Commands Channel Bus AUX FX Return Mutes - JoueBien/X32-OSC-Workbench GitHub Wiki
We can get the mute value with
/ch/<id>/mix/on
/auxin/<id>/mix/on
/bus/<id>/mix/on
/fxrtn/<id>/mix/on
This will respond with
[
{
"type":"i",
"value":1 // {MUTE ON, MUTE OFF}, int with value 0 or 1
}
]
You can set the value of a solo button with
/ch/<id>/mix/on
/auxin/<id>/mix/on
/bus/<id>/mix/on
/fxrtn/<id>/mix/on
[
{
"type":"i",
"value":1 // {MUTE ON, MUTE OFF}, int with value 0 or 1
}
]
- is a number for selecting which mute button
01-32: /ch/<id>/mix/on
01-16: /bus/<id>/mix/on
01-08: /auxin/<id>/mix/on
01-04: /fxrtn/<id>/mix/on
- <on/off> the value of the mute switch Things are a bit odd here the mute values are reversed in state - presumably because the console originally had Yamaha style on/off buttons instead of mute buttons. Therefore the values are where 0 is muted where 1 is un-muted