Metadata-Version: 2.4
Name: picozero-rw
Version: 0.6.2
Summary: This is a fork of the origin picozero library
Home-page: https://github.com/roboticsware/picozero
Author: Roboticsware
Author-email: roboticsware_uz@gmail.com
License: MIT
Keywords: raspberry,pi,pico,electronics,roboticsware
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: summary

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.

```python
from picozero import LED, Button

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

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

```python
from picozero import I2cLcd
from time import sleep

lcd = I2cLcd(1, 3, 2) # LCD 16x2, i2c_id=1, scl=3, sda=2

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

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