Metadata-Version: 2.4
Name: pymico
Version: 0.1.0
Summary: High-level and low-level Python API for interacting with the Quantum Mico board over USB.
Author: Quantiva
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyusb>=1.2.1
Requires-Dist: libusb-package>=1.0.26.0

# pymico

High-level and low-level Python API for interacting with the Quantum Mico board over USB.

## Installation
```bash
pip install pymico
```

## Quick Start
```python
from pymico import QuantumMico

board = QuantumMico()
board.connect()
board.fill_matrix(0, 255, 0) # Clear green!
```
