Can t find how to send mute state to a led
Hi, I can t find how I can put a led on or off following the mute state of a track, anybody can help me please? I d like it to react when I send mute via cc but also when I push the mute button with mouse.
Thanks
Try wrapping your MIDI Bytes in an extra set of parenthesis, so the code looks like this:
self._send_midi((0xB0 94 127))
Rather than this:
self._send_midi(0xB0 94 127)
Hi John,
could you please give more details on the seld_send_midi syntax?
I try to send a custom midi command to my Minilab Mk2 to change its preset.
The midi command is “F0 00 20 6B 7F 42 05 08 F7” and does work when being send by a separate tool (e.g. Bome SendSX)..
With CSS I cannot make it work and always end up in a syntax error.
Tried to add 0x to all fields for HEX
Tried to wrap it in brackets
Tried comma separation
Is it somehow possible?
Thank you already for taking time to answer
Found a cumbersome solution, but it works:
Just translate each individual element from HEX to DEC and it will work.
In my case what I want to send is: (F0,00,20,6B,7F,42,05,01,F7)
Instead I now send the same in Decimal: (240,0,32,107,127,66,5,1,247) and this works.
@Bernwadub:
Then try this instead:
self._send_midi((176 94 127))
176 is the DECIMAL version of 0xB0 (HEX).x
Try this instead (added commas between the elements):
self._send_midi((176,94,127))
Sign up
User registration is currently not allowed.