実験 ポテンショメータ→ADC @Pico,Thonny,Lubuntu22.04

実験 ポテンショメータ→ADC @Pico,Thonny,Lubuntu22.04

★ピン接続
Pico#36(3.3Vout)-Pot#1(104)
Pico#31(ADC0)-Pot#2(center)
Pico#23(GND)-Pot#3
★2209031641 ADC print.py
import machine,time
AD= machine.ADC(0)
while 1:
time.sleep(0.1)
V= AD.read_u16()*3.3/0xFFFF
print(V)