diff --git a/Software/Gravity/Gravity.ino b/Software/Gravity/Gravity.ino index 3e60b2d..8be2ce4 100644 --- a/Software/Gravity/Gravity.ino +++ b/Software/Gravity/Gravity.ino @@ -6,7 +6,7 @@ #include #include -#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(); } } }