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
_CIN_SINGLE_BYTE = const(0xF) # Not currently supported
Does that mean I won't be able to send System Real-Time messages? Or just that I need to make the call to send_event myself? If so, what am I doing wrong? I'm trying to send that MIDI message within a periodic timer set to 300 ms, since the MIDI 1.0 specs said it should be sent that often. Maybe that's the problem?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to send the Active Sensing message, but the
send_event
function is returningFalse
. Here's how I'm doing it:I've successfully extended the
on_midi_event
from theMIDIInterface
class to receive System Real-Time messages like so:So I'm wondering what's going on. I saw a comment here https://github.com/micropython/micropython-lib/blob/master/micropython/usb/usb-device-midi/usb/device/midi.py that said:
Does that mean I won't be able to send System Real-Time messages? Or just that I need to make the call to
send_event
myself? If so, what am I doing wrong? I'm trying to send that MIDI message within a periodic timer set to 300 ms, since the MIDI 1.0 specs said it should be sent that often. Maybe that's the problem?Beta Was this translation helpful? Give feedback.
All reactions