kopia lustrzana https://github.com/pimoroni/pimoroni-pico
Add button & LED example for Pimoroni Pico LiPo
rodzic
3ce347799b
commit
47e1ad3ae8
|
@ -0,0 +1,13 @@
|
|||
# This example blinks the user LED on Pimoroni Pico Lipo whilst the BOOT button is pressed.
|
||||
# The button is active low, which is why we're using an if not statement!
|
||||
|
||||
from machine import Pin
|
||||
import time
|
||||
|
||||
led = Pin(25, Pin.OUT)
|
||||
button = Pin(23, Pin.IN, Pin.PULL_DOWN)
|
||||
|
||||
while True:
|
||||
if not button.value():
|
||||
led.toggle()
|
||||
time.sleep(0.5)
|
Ładowanie…
Reference in New Issue