I am trying to send a SysEx message to my Qu-16 to change the name on Channel 1 and I’m ready to pull my hair out. I don’t know what I’m doing wrong.
The Qu Mixer MIDI Protocol V1.5 document specifies the System Exclusive Header as:
A&H ID Qu mixer Major/Minor version MIDI channel
F0, 00, 00, 1A, 50, 11, 01, 00, 0N
Is the Major/Minor version it refers to the current firmware version? If so, should I convert the minor number (50) to Hex (0x41)? That’s the one thing I haven’t tried.
The complete command should be:
Sysex Header, 03, CH, , F7
So, if I want to send Change Channel Strip One to “ABC” on MIDI Channel 1:
ASCII A B C
CHAR 65 66 67
HEX 41 42 43
Therefore, the complete buffer should be Byte{F0, 00, 00, 1A, 50, 11, 01, 41, 00, 03, 00, 41, 42, 43, F7}?
Does anyone have an app that can send this string to their Qu to see if the name changes?