Does anyone know how to get values from the Behringer X32 unit (or Midas M32)? Sending OSC commands works fine but I’ve got nothing coming back. I am receiving OSC from the x32 in another app.
I’m new to this software.
1 Like
if anyone else wanted to do this, create a javascript file with the following code and load it into the Custom-Module section on the setup page.
setInterval(()=>{
send('192.168.0.29', 10023, '/xremote')
}, 10000)
Obviously change the IP to your unit’s IP.
1 Like