import machine
from machine import Pin
from machine import ADC
BETA = 3950 # should match the Beta Coefficient of the thermistor
temp = ADC(Pin(13))
x = 2324 #19 grados
while True:
valor = temp.read()
#if valor >= x:
print("Temperatura: " + str(valor))
#else:
# print("asdasda")