from machine import Pin,ADC
import utime
a = ADC(27)
cv=3.3/65535
while True :
print(a.read_u16()*cv)
utime.sleep(0.1)
from machine import Pin,ADC
import utime
a = ADC(27)
cv=3.3/65535
while True :
print(a.read_u16()*cv)
utime.sleep(0.1)