Home AMX User Forum NetLinx Studio

Russound's SMS3 module

I'm trying to use this module for Russound's SMS3 media server by AMX and I can't make the system to communicate with the music server. The IP address to the SMS3 is 192.168.1.104 which I already assigned in the program but the TP is showing that the system is OFFLINE. Could somebody look in the code and tell me what am I missing?

Comments

  • flcusatflcusat Posts: 309
    I was able to stablish communication. I found that I was mising the following event to initiate the communication.


    DATA_EVENT [vdvRussound_SMS3[1]]
    {
    ONLINE:
    {
    send_command vdvRussound_SMS3[1],"'PROPERTY-IP_Address,192.168.103.48?"
    send_command vdvRussound_SMS3[1],"'REINIT'"
    }
    }

    I have another question. On line 248 of the Main there is a comment that states: Use this section if you have a TP in the system. And the section goes from line 250 to 254. When I made this section available and change TP with vdTP and compiled it I got an error on line 253 that says that S_DATE is not defined. Any ideas?
  • viningvining Posts: 4,368
    Try changing it to __LDATE__ and the S_TIME to __TIME__. Double underscore before and after. This line is just file compilation info displayed on a line on one of the TP pages. You can most likely loose the line all together if you like.

    There doesn't seem to be a refernce to there declaration or use of S_DATE or S_TIME but then I only looked for a second.
  • flcusatflcusat Posts: 309
    vining wrote:
    Try changing it to __LDATE__ and the S_TIME to __TIME__. Double underscore before and after. This line is just file compilation info displayed on a line on one of the TP pages. You can most likely loose the line all together if you like.

    There doesn't seem to be a refernce to there declaration or use of S_DATE or S_TIME but then I only looked for a second.

    Thanks for your help but changing them to what you just suggested give me the same not defined error.
  • DHawthorneDHawthorne Posts: 4,584
    Ignore that "use this section if you have a TP." It's a holdover from Axcent3 and TPD3 days. All it does is give you the means to display on your panel the file and designer data. You do not need it, and if you really wanted, you could hard code that into the panel file anyway instead of pulling it from the master. I delete the whole block as a matter of course.
  • flcusatflcusat Posts: 309
    DHawthorne wrote:
    Ignore that "use this section if you have a TP." It's a holdover from Axcent3 and TPD3 days. All it does is give you the means to display on your panel the file and designer data. You do not need it, and if you really wanted, you could hard code that into the panel file anyway instead of pulling it from the master. I delete the whole block as a matter of course.

    Thanks, very much.
  • flcusatflcusat Posts: 309
    I'm also having problems with characters in Spanish not displaying properly even when they display properly in the server.
Sign In or Register to comment.