pschatzmann / arduino-midi

Midi support for Arduino (Midi over Serial, Bluetooth, BLE and TCP/IP, Apple MIDI)
27 stars 2 forks source link

Support for sending/receiving MIDI clock? #3

Open Hans0lo opened 1 year ago

Hans0lo commented 1 year ago

Hi Phil, first: thnx for your work!

I wonder, as I searched for the word 'clock' here: https://pschatzmann.github.io/arduino-midi/html/annotated.html

but it was not found, so I assume that this library does not support sending/receiving clock?

pschatzmann commented 1 year ago

No, so far I did not have any need to support any System messages. However it should not be too difficult to add...

Hans0lo commented 1 year ago

thnx for the speedy reply - can you eventually give me some hints on how/where in the package system messages should be added ? (i do know MIDI specs quite well, but am not too experienced in c++ coding.... so i feel a bit overwhelmed when i try to find the right place in all of the modules that are part of this lib)

pschatzmann commented 1 year ago

You would extend MidiCommon with the system messages e.g.

You would also extend the MidiParser class to handle

Hans0lo commented 1 year ago

thnx a lot Phil!