import time import time import adafruit_thermistor import board sensor_temp = adafruit_thermistor.Thermistor( board.TEMPERATURE, 10000, 10000, 25, 3950) while True: temp = round(sensor_temp.temperature, 1) print(temp, "C") time.sleep(1)