Metadata-Version: 2.1
Name: picozero
Version: 0.4.2
Summary: A beginner-friendly library for using common electronics components with the Raspberry Pi Pico. 
Home-page: https://github.com/RaspberryPiFoundation/picozero
Author: Raspberry Pi Foundation
Author-email: learning@raspberrypi.org
License: MIT
Keywords: raspberry,pi,pico,electronics
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: Implementation :: MicroPython
Description-Content-Type: text/markdown
License-File: LICENSE.md

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

```python
from picozero import LED, Button

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

button.when_pressed = led.on
button.when_released = led.off
```

Documentation is available at [picozero.readthedocs.io](https://picozero.readthedocs.io/en/latest/).
