from machine import ADC
from time import sleep
resistor = ADC(26)
valor = 0
while True:
valor = resistor.read_u16()
print(valor)
sleep(0.3)
from machine import ADC
from time import sleep
resistor = ADC(26)
valor = 0
while True:
valor = resistor.read_u16()
print(valor)
sleep(0.3)