Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 2.43 KB

README.md

File metadata and controls

40 lines (28 loc) · 2.43 KB

Py-Lights

Py-Lights (name pending) is a program to bind MIDI inputs different effects (actions) that output to 5050 LEDs.

Setup

  1. Configure hardware (I followed this tutorial)
  2. Get python-rtmidi pip install python-rtmidi
  3. Get pigpio sudo apt-get install pigpio python-pigpio

Creating your action setup

To add actions to the program, use setup.py to add actions, then add inputs to them (see setup_example.py).

Inputs have 5 different modes:

trigger trigger_hold toggle hold knob
Activated in a single instance Activated in an instance and while held (todo) Activated while held Activated when a knob is updated

A list of actions can be found here. Parameters are declared on object creation as optional parameters while settings are used for variables that can change throughout use.

Action Parameters (default) Settings (default)
Action (base) Color (black) MUTE (False)
Color Color (white) Intensity (0)
ColorTrigger Color (white) Attack (0) Sustain (20) Release (0) Attack (0) Sustain (20) Release (0)
ColorTriggerHold Color (white) Attack (0) Release (0) Attack (0) Release (0)
Strobe Color (white) Intensity (0) Speed (5)
StrobeMute Speed (5) On (0)
StrobeTap Color (white) Intensity (0)
Mute On (0)
Chaos Intensity (0)

Running

To run, simply use the command sh init.sh

Contributing

Please let me know if you would like to contribute any Actions or other features! Also please inquire me about any issues or confusion in documentation.