MIDI in now works (code)

This commit is contained in:
2023-10-27 11:35:59 +03:00
parent 371d256c08
commit 66218a307c
3 changed files with 16 additions and 4 deletions

View File

@ -317,7 +317,14 @@ void checkInputs() {
if (masterClockMode == 0) {
calculateBPMTiming();
resetClocks();
isPlaying = !isPlaying;
//isPlaying = !isPlaying;
if (!isPlaying) {
isPlaying = true;
sendMIDIStart();
} else {
isPlaying = false;
sendMIDIStop();
}
}
playBtnPushed = true;
updateScreen(); //to wake up the screen if turned off