how to write 0xF events via MidiUSB.send()?
Closed this issue · 2 comments
2kohm commented
Hello,
is it possible so send Midi Clock pules ?
trying to make a midi clock and want to send these midi messages
// Clock start = 0xFA
// Clock stop = 0xFC
// Clock pulse = 0xF8
MidiUSB.send(0xF8);
thekunalsaini commented
Hello @2kohm,
It is possible to send it.
samisabik commented
you need to specify the MIDI header for real-time messages : 0x0F
midiEventPacket_t clock = {0x0F,0xF8,0,0};