first commit

This commit is contained in:
stuce-bot 2025-06-30 20:47:33 +02:00
commit 5893b00dd2
1669 changed files with 1982740 additions and 0 deletions

View file

@ -0,0 +1,26 @@
#ifndef CONSTAINTS_H_
#define CONSTAINTS_H_
enum {
kNumKeys = 88, // Don't change this. 88 keys on a keyboard.
kNumLightsPerNote = 20,
// Controls the speed of the light rope. Higher values result in
// slower draw time, however the data integrity increases.
kLightClockDivisor = 12,
kNewLightClockDivisor = 16,
// Led Curtain is a mode that we used on the bus. When this is
// zero it's assume that we are using the TCL led lighting.
kUseLedCurtin = 0,
kShowFps = 0, // If true then the fps is printed to the console.
// Coda's keyboard indicates that this is the value when the
// foot pedal is pressed. There is probably a more universal
// way of detecting this value that works with more keyboards.
kMidiFootPedal = 64,
};
#endif // CONSTAINTS_H_