import machine

pin = machine.ADC(14, machine.Pin.IN)


while True:
    print(pin)
    
    sleep(1)