実験 LED 点滅 @Pico,Thonny,Lubuntu22.04 実験 LED 点滅 @Pico,Thonny,Lubuntu22.04 ★2209020000 LED blink.py import machine,time LED= machine.Pin(25, machine.Pin.OUT) while 1: LED.value(1) time.sleep(0.1) LED.value(0) time.sleep(0.1)
実験 ポテンショメータ→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)