Metadata-Version: 2.1
Name: picozero-rw
Version: 0.4.3
Summary: A beginner-friendly library for using common electronics components with the Raspberry Pi Pico.
Home-page: https://github.com/RaspberryPiFoundation/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

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(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](https://picozero.readthedocs.io/en/latest/).
