Commands Solo (Bus & Channel) - JoueBien/X32-OSC-Workbench GitHub Wiki

Get Solo Value

You can request the value of a channel/bus solo with

/-stat/solosw/<id>
[]

This will respond with

[
  {
    "type":"i",
    "value":1 // {OFF, ON}, int with value 0 or 1 
  }
]

Set Solo Value

You can set the value of a solo button with

/-stat/solosw/<id>
[
  {
    "type":"i",
    "value": <on/off>
  }
]

You have to use the stat command as there is no action command - I guess the interns wrote this one and didn't use /-action.

Params

  • <id> is a number for selecting which solo button
01-32: Ch 01-32
33-40: Auxin 1-8
41-48: FxRtn 1-8
49-64: Bus master 01-16
65-70: Matrix 1-6
71: L/R
72: Mono/Cent
  • <on/off> the value of the solo switch
{OFF, ON}, int with value 0 or 1 
0/1 for on/off of solo switch 
⚠️ **GitHub.com Fallback** ⚠️