kd5rxt-mark
Well-known member
@ithinu:
I had another look at your sketch in post #21 above, and this time I may have found something for you to look at. I don't believe that you should be making a call to
In your
For reference
Hope that helps . . .
Mark J Culross
KD5RXT
I had another look at your sketch in post #21 above, and this time I may have found something for you to look at. I don't believe that you should be making a call to
hostMidi.begin()
in your setup()
. AFAIK, the only calls that you should make on the MIDIDevice_BigBuffer
devices in setup()
are the setHandle*
functions to set the particular MIDI handler routines.In your
loop()
, you correctly call the read()
function for your USBhost MIDI interface. You can also make calls to the send*()
functions to send specific MIDI message types on your USBhost MIDI interface.For reference
MIDI.begin()
is not for the USBhost MIDI interface . . . that is for a traditional serial (COM port) MIDI interface, so I don't believe that it has anything to do with what you are working with/on.Hope that helps . . .
Mark J Culross
KD5RXT