MIDI in now works (code)
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user