Metadata-Version: 2.4
Name: minilab3
Version: 0.1.0
Summary: Python library for controlling the Arturia MiniLab 3 via MIDI and SysEx calls
Author-email: Jan WERSCHING <jan.wersching75@gmail.com>
License: MIT
Keywords: midi,arturia,minilab3,music,controller,sysex
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: mido
Requires-Dist: python-rtmidi

# MiniLab3

Control the Arturia MiniLab 3 with Python via SysEx calls.
Manually reverse engineered.

## Install

```bash
pip install minilab3
```
## Example
```python3
from minilab3 import MiniLab3

ml = MiniLab3()
ml.connect()

ml.display("Hello", "World")
ml.set_pad_color(1, MiniLab3.RED)
```
