This commit is contained in:
Oleksiy
2025-03-04 18:00:19 +02:00
parent bf01c01ce9
commit fb86269b21

View File

@ -6,7 +6,7 @@
#include <avr/wdt.h>
#include <NeoHWSerial.h>
#define VERSION "V:1.1.2b"
#define VERSION "V:1.1.2"
byte memCode = 'D'; //Change to different letter if you changed the data structure
@ -249,8 +249,12 @@ void receiveMIDI( uint8_t msg, uint8_t status ) {
MIDIClockReceived = true;
} else if (msg == 0xFC) { //stop
isPlaying = false;
resetClocks();
sendMIDIStop();
} else if (msg == 0xFA || msg == 0xFB) { //start and continue
resetClocks();
isPlaying = true;
sendMIDIStart();
}
}
}