You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// usbMIDI.read() needs to be called rapidly from loop(). When
// each MIDI messages arrives, it return true. The message must
// be fully processed before usbMIDI.read() is called again.
if (usbMIDI.read())
{
processMIDI();
}
=> Maybe there are more than one incoming MIDI messages per loop. Try
while (usbMIDI.read())
{
processMIDI();
}
The text was updated successfully, but these errors were encountered:
// usbMIDI.read() needs to be called rapidly from loop(). When
// each MIDI messages arrives, it return true. The message must
// be fully processed before usbMIDI.read() is called again.
if (usbMIDI.read())
{
processMIDI();
}
=> Maybe there are more than one incoming MIDI messages per loop. Try
while (usbMIDI.read())
{
processMIDI();
}
The text was updated successfully, but these errors were encountered: