FastLED 3.9.7
Loading...
Searching...
No Matches
settings.h
1#ifndef CONSTAINTS_H_
2#define CONSTAINTS_H_
3
4enum {
5 kNumKeys = 88, // Don't change this. 88 keys on a keyboard.
6 kNumLightsPerNote = 20,
7
8 // Controls the speed of the light rope. Higher values result in
9 // slower draw time, however the data integrity increases.
10 kLightClockDivisor = 12,
11 kNewLightClockDivisor = 16,
12
13 // Led Curtain is a mode that we used on the bus. When this is
14 // zero it's assume that we are using the TCL led lighting.
15 kUseLedCurtin = 0,
16
17 kShowFps = 0, // If true then the fps is printed to the console.
18
19 // Coda's keyboard indicates that this is the value when the
20 // foot pedal is pressed. There is probably a more universal
21 // way of detecting this value that works with more keyboards.
22 kMidiFootPedal = 64,
23};
24
25#endif // CONSTAINTS_H_
26