minor formatting changes
This commit is contained in:
@ -99,7 +99,7 @@ int playingModes[7]; // should be renamed to currentSubdivs or something. Updat
|
||||
int playingModesOld[7];
|
||||
|
||||
uint16_t pulsePeriod;
|
||||
bool isPlaying;// = false; // replace to something like uint8_t status where 1xxxxxx isPlaying, x1xxxxx isRecording etc
|
||||
bool isPlaying;// = false; // replace with some flags like uint8_t status where 1xxxxxx isPlaying, x1xxxxx isRecording etc
|
||||
bool isRecording = false;
|
||||
bool recordToNextStep = false;
|
||||
bool MIDIClockReceived = false;
|
||||
@ -125,12 +125,13 @@ bool menuItemSelected = false;
|
||||
uint8_t lastMenuItem = 3;
|
||||
uint8_t displayScreen = 0; //0 - main, 1 - sequencer, 2 - settings
|
||||
|
||||
bool playBtnPushed = false;
|
||||
bool shiftBtnPushed = false;
|
||||
|
||||
int16_t CV1Input = 0;
|
||||
int16_t CV2Input = 0;
|
||||
|
||||
bool playBtnPushed = false;
|
||||
bool shiftBtnPushed = false;
|
||||
bool encBtnPushed;
|
||||
|
||||
int encPositionOld = 0;
|
||||
uint8_t encDirectionOld = 0;
|
||||
uint32_t encPressedTime;
|
||||
@ -139,7 +140,7 @@ uint32_t playPressedTime;
|
||||
uint32_t playReleasedTime;
|
||||
uint32_t shiftPressedTime;
|
||||
uint32_t shiftReleasedTime;
|
||||
bool encBtnPushed;
|
||||
|
||||
|
||||
int extResetCountdown;
|
||||
int extTriggerCount;
|
||||
|
||||
Reference in New Issue
Block a user