1.1.2
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
#include <avr/wdt.h>
|
#include <avr/wdt.h>
|
||||||
#include <NeoHWSerial.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
|
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;
|
MIDIClockReceived = true;
|
||||||
} else if (msg == 0xFC) { //stop
|
} else if (msg == 0xFC) { //stop
|
||||||
isPlaying = false;
|
isPlaying = false;
|
||||||
|
resetClocks();
|
||||||
|
sendMIDIStop();
|
||||||
} else if (msg == 0xFA || msg == 0xFB) { //start and continue
|
} else if (msg == 0xFA || msg == 0xFB) { //start and continue
|
||||||
|
resetClocks();
|
||||||
isPlaying = true;
|
isPlaying = true;
|
||||||
|
sendMIDIStart();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user