from machine import Pin
from machine import ADC
from time import sleep
Vert= ADC(27)
Horz= ADC(28)
Sel= Pin(26, Pin.IN, Pin.PULL_DOWN)
#===============================#
while True:
valor1= Horz.read_u16()
sleep(1)
print(valor1)
from machine import Pin
from machine import ADC
from time import sleep
Vert= ADC(27)
Horz= ADC(28)
Sel= Pin(26, Pin.IN, Pin.PULL_DOWN)
#===============================#
while True:
valor1= Horz.read_u16()
sleep(1)
print(valor1)