Home AMX User Forum AMX General Discussion
Options

Need help with Symetrix audio dsp Radius 12 X 8

Hi,

Does anyone have experience with symetrix dsp Radius 12 X 8.
I just need to increase and decrease the levels of various inputs and output channels.
I have attached the Symetrix control document

Thanks in advance
Ajay

Comments

  • Options
    tdewildtdewild Posts: 49
    In Symetrix every controller block/function need a unique number, you control that unique number (block/function).

    SEND_STRING dvSymnet,"'CS 53 65535',13" // mute controller #53 (set level to 65535 (max))
    SEND_STRING dvSymnet,"'CS 53 0',13" // unmute controller #53 (set level to 0 (min))
    SEND_STRING dvSymnet,"'GS 53',13" // get mute status controller #53


    SEND_STRING dvSymnet,"'CC 50 1 327',13" // change controller <#50> <increment> <amount to change> (0 to 65535)

    SEND_STRING dvSymnet,"'CC 50 0 327',13" // change controller <#50> <decrement> <amount to change> (65535 to 0)

    CC = change controller
    50 = control number
    1 = increment (0 = decrement)
    327 = amount to change
    13 = <CR> ;)

    Use button event function HOLD to keep increment or decrement controller level.

    HOLD[2,REPEAT]:
    {
    SEND_STRING dvSymnet,"'CC 50 1 327',13"
    }


    Control by LAN: Symetrix Radius UDP only, port 48631

    Control by RS232: baudrate 57600


    Hope this will help you to start.
Sign In or Register to comment.