Metadata-Version: 2.1
Name: picozero
Version: 0.2.0
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
Description: 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/).
        
Keywords: raspberry,pi,pico,electronics
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: Implementation :: MicroPython
Description-Content-Type: text/markdown
