pico-micropython-examples/adc/temperature.py

13 wiersze
259 B
Python
Czysty Zwykły widok Historia

2021-01-20 16:52:33 +00:00
import machine
import utime
sensor_temp = machine.ADC(4)
conversion_factor = 3.3 / (65535)
while True:
reading = sensor_temp.read_u16() * conversion_factor
temperature = 27 - (reading - 0.706)/0.001721
print(temperature)
utime.sleep(2)