Home AMX User Forum NetLinx Studio

Enova DGX responce dilemma

Hi

I do not know what I am doing wrong, but it must be something simple.

I have a Enova DGX 16. Programmed and works from an iPad that will control it, but the problem is the feedback. I don´t get any messages into data.text or a buffer that I also have. I can see in the notifications tab that I am sending the correct switch and the DGX switches, and then I see the response CL0I4O5T (or something), but nothing goes into the buffer or DATA.TEXT.

Any ideas on what I am doing wrong?
DATA_EVENT[dvMATRIX]
{
   ONLINE:
   {

   }
   OFFLINE:
   {

   }
   STRING:
   {
	SEND_STRING 0,"'RSVDSTRING =',DATA.TEXT"
   }
   COMMAND:
   {
	SEND_STRING 0,"'RSVDCOMMAND =',DATA.TEXT"
   }
}

Comments

  • catalinocatalino Posts: 25
    I haven't had too much of a chance to play around with the DGX, but from my understanding each card is its own device number and each port on the card has it's own port # (i.e. 5001:1:0, 5001:2:0, 5002:1:0, etc.) You might want to try looking for strings coming in on those devices/ports. Your System Tree in Netlinx Studio may tell you more.
  • viningvining Posts: 4,368
    Is this your own code or a DUET module. If duet you need to send the module/device the passback command otherwise you will not get anything in your data event.
  • ThorleifurThorleifur Posts: 58
    It was my own code that I used and I was using the correct D:P:S. I do not know what I did this morning, but all of a sudden, I was getting feedback. Now it works like a charm, after a little string manipulation that is.

    It propably just needed the weekend to get settled into it´s new home. :)
Sign In or Register to comment.