How to send commands to multiple AUDAC devices via a single Commander?


It is possible to send commands to multiple AUDAC devices via a single Commander. This is possible by setting the commander device IP address to 239.254.222.222, port number as 8711 and communication protocol to UDP_MULTICAST.

Compatible devices
  • LUNA series
  • NWP series
  • AMP203
  • SMA series (with optional ANI44XT Dante Module installed)
  • SMQ series (with optional ANI44XT Dante Module installed)
  • PMQ series (with optional ANI44XT Dante Module installed)
  • VEXO/A Series (with optional ANI44XT Dante Module installed)
Implementations

We can create single commands for each individual device that we would like to control with a single sequence. That will allow us to control multiple AUDAC devices with a single sequence.

Command structure
#|destination|source|command|argument|checksum|<cr><lf> 

Mute Output 2 of SMQ
#|Q001|jns|sm02|1|U|<cr><lf>

Route Dante Input 2 to AMP203 Output
#|P001|jns|SR01|2|U|<cr><lf>

Turn on GPO1 of LUNA-F
#|LUNA_F>1|CLIENT>1|SET_REQ^GPIO>1>GPO_TRIGGER>1^GPO_ENABLE|TRUE|U|<cr><lf>

We can also create more general single commands for multiple devices.

Mute Output 1 of all AMP203/SMA/SMQ/PMQ/VEXO on the same VLAN
#|ALL|jns|SM01|1|U|<cr><lf>

Setting Bluetooth Left on Dante Output 1, Bluetooth Right on Dante Output 2, XLR 1 on Dante Output 3 and XLR 2 on Dante Output 4 for all NWP220 on the same VLAN
#|NWP220|CLIENT>1|SET_REQ^ALL_OUT^ROUTE|5^6^1^2^^^^|U|<cr><lf>

Top