minor formatting changes

This commit is contained in:
Oleksiy
2025-04-03 21:31:11 +03:00
parent 4767c2942f
commit 91511da688
2 changed files with 10 additions and 9 deletions

View File

@ -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;