here is the best code I had, maybe it's not much for you but for me it's already enough trouble....
#define ledPin 13
byte midi_clock = 0xF8;
byte midi_start = 0xFA;
byte data;
void OnNoteOn(byte channel, byte note, byte velocity)
{
digitalWrite(ledPin, HIGH);
}
void OnNoteOff(byte...