-
Greetings, void loop()
I'm simply trying to get the real time messages that are coming in from midiA, to get sent to midiB just like note on/off, program change, and control change are. After reading the documentation I'm confident that I am making the solution more complicated than it is in reality. Real time messages get transmitted just fine with midi thru. I suppose the merger code is just missing a function. I tried to use getTransport(), but that isn't it. If someone could point me the right direction I would appreciate it. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi The above code will not work, if you want to send RealTime messages (typically 1 byte long). The arduino_midi_library/src/MIDI.hpp Lines 159 to 166 in d9149d1 You might want to use |
Beta Was this translation helpful? Give feedback.
Hi
The above code will not work, if you want to send RealTime messages (typically 1 byte long). The
midiB.send
command will filter out any Real Time messages (only channel messages are processed).arduino_midi_library/src/MIDI.hpp
Lines 159 to 166 in d9149d1
You might want to use
midiB.sendRealTime
command (and check first if the incoming data frommidiA
is a RealTime message)