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()
Pre-alpha - not yet for general release. Documentation is not yet available. There will be many bugs and issues.
Full documentation will be 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.