Skip to main content

A beginner-friendly library for using common electronics components with the Raspberry Pi Pico.

Project description

A beginner-friendly library for using common electronics components with the Raspberry Pi Pico.
Roboticsware added some functionalities based on picozero of Raspberry Pi Foundation.'

from picozero import LED, Button

led = LED(1)
button = Button(2)

button.when_pressed = led.on
button.when_released = led.off
from picozero import I2cLcd
from time import sleep

lcd = I2cLcd(27, 26) # LCD 16x2, sda=27, scl=26

lcd.putstr('Hello World')
sleep(1)
lcd.move_to(0, 1)
lcd.putstr('Hello Roboticsware')

Documentation is available at picozero.readthedocs.io.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

picozero_rw-0.4.3-py3-none-any.whl (18.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page