A beginner-friendly library for using common electronics components with the Raspberry Pi Pico.
from picozero import LED, Button
led = LED(1)
button = Button(2)
while True:
if button.is_pressed:
led.on()
else:
led.off()
Beta. There will be bugs and issues. API changes are likely.
Documentation is available at picozero.readthedocs.io :
picozero is inspired by gpiozero (and reuses some of its underlying structure), but is by design lighter weight and aligned with the Raspberry Pi Pico. Thank you to everyone who has contributed to the gpiozero project.