Home AMX User Forum AMX General Discussion
Options

Audio processor Symetrix Jupiter -UDP Programming?

Anyone have experience with this device? Any tricks or tips? Code to share?
How to define a TCP/IP device ? Device number?
How to control a Ethernet equipped Device?
Symetrix Jupiter UDP port :48630

Serial control is much easier,but this device don't have a RS232 Port.

Sorry for my poor English.
thank you all

Comments

  • Options
    Its the same protocol than the RS232.
    Don't forget to sent the right communication parameters
    (SQ) Set Quiet Mode
    (EH) Set Echo Mode

    dvSymetrix_1 = 0:3:0
    SymServerPort= 48630


    DEFINE_FUNCTION SendtoSym(SymCommand[10],SymIndex,Value,Preset)
    {
    CANCEL_WAIT 'ClosePort'
    IP_CLIENT_OPEN (SymAMXPort,SymIP,SymServerPort, 3) (* öffnet Kommunikationsport *)

    WAIT 1 'OpenPort'
    {
    SEND_STRING devSym,"'SQ 0',$0D"

    WAIT 5
    {
    SEND_STRING devSym,"SymCommand,' ',ITOA(SymIndex),' ',ITOA(Value),$0D"
    }
    Wait 20 'ClosePort'
    {
    IP_CLIENT_CLOSE (SymAMXPort)
    }
    }

    Regards Thomas
  • Options
    thank you

    thank you! It helps
  • Options
    So I forgot about the quiet mode. Will try this again next time.
Sign In or Register to comment.