FastLED 3.9.15
Loading...
Searching...
No Matches

◆ anonymous enum

anonymous enum
Enumerator
kNumKeys 
kNumLightsPerNote 
kLightClockDivisor 
kNewLightClockDivisor 
kUseLedCurtin 
kShowFps 
kMidiFootPedal 

Definition at line 4 of file settings.h.

4 {
5 kNumKeys = 88, // Don't change this. 88 keys on a keyboard.
7
8 // Controls the speed of the light rope. Higher values result in
9 // slower draw time, however the data integrity increases.
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};
@ kShowFps
Definition settings.h:17
@ kLightClockDivisor
Definition settings.h:10
@ kMidiFootPedal
Definition settings.h:22
@ kUseLedCurtin
Definition settings.h:15
@ kNumLightsPerNote
Definition settings.h:6
@ kNewLightClockDivisor
Definition settings.h:11
@ kNumKeys
Definition settings.h:5