from ntc import*
import tm1637
disp = tm1637.TM1637(clk=Pin(7), dio=Pin(8))
while 1:
temp=read_ntc()
print("temperature:",temp,"^C")
disp.number(int(round(temp,0)))
sleep(0.3)from ntc import*
import tm1637
disp = tm1637.TM1637(clk=Pin(7), dio=Pin(8))
while 1:
temp=read_ntc()
print("temperature:",temp,"^C")
disp.number(int(round(temp,0)))
sleep(0.3)