Can t find how to send mute state to a led

2.52K viewsGeneral
0

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

admin Changed status to publish
Attached Files:
0

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)

admin Changed status to publish
Attached Files:
0

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

admin Changed status to publish
Attached Files:
0

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.

admin Changed status to publish
Attached Files:
0

@Bernwadub:

Then try this instead:
self._send_midi((176 94 127))

176 is the DECIMAL version of 0xB0 (HEX).x

admin Changed status to publish
Attached Files:
0

Try this instead (added commas between the elements):
self._send_midi((176,94,127))

admin Changed status to publish
Attached Files: