from machine import ADC, Pin
import time
adc = ADC(Pin(32),atten=ADC.ATTN_0DB) 

while True:
  print((adc.read()/4096)*1)
  time.sleep(2)