Skip to content
forked from aaron64/py-lights

A python script for controlling RGB5050 LED strips through MIDI inputs

Notifications You must be signed in to change notification settings

bitzky/py-lights

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A python script for controlling RGB5050 LED strips through MIDI inputs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Shell 0.4%