Page 1 of 1

IP2CC Global Cache Commands

Posted: Mon Jul 16, 2012 5:19 pm
by member_c837
Ive got these commands for IP2CC commands.

Re: IP2CC Global Cache Commands

Posted: Thu Aug 30, 2012 9:55 pm
by member_189
Thank you very much this works.

Re: IP2CC Global Cache Commands

Posted: Wed Oct 24, 2012 11:49 am
by dansonamission
Any one got an example for the RS232 version of this?

Re: IP2CC Global Cache Commands

Posted: Wed Oct 24, 2012 12:13 pm
by DemoPad
There is no such thing - if you are sending commands via an IP2SL unit to control an RS232 device, then the command is whatever the RS232 command is for that device, for example to turn on an Epson projector, it might be:

PWR ON\x0D

There is no "sendserial,1:1..." etc like there is with IR, you just send the data that you want to come out of the RS232 port. Please refer to the RS232 command documentation for the equipment you are trying to control

Re: IP2CC Global Cache Commands

Posted: Wed Oct 24, 2012 12:21 pm
by dansonamission
The device has this command

0xFE 0x00 0x42 0x01 0x82

Using iTest and adding 0x0D to the end, returns an error.

ERR_0:0,001. (which is syntax error)

and without the 0x0D

ERR_0:0,016. (which is no carriage return found)

Re: IP2CC Global Cache Commands

Posted: Wed Oct 24, 2012 1:05 pm
by DemoPad
So you want to be entering that command as:

\xFE\x00\x42\x01\x82

in our software (and iTest), using \x format with no spaces, as shown above.

You also want to make sure you are using port 4999 (Serial) in iTest and our software, as this is the port that commands need to be sent to. I suspect you are sending them to 4998, which is why you are getting the error code from the Global Cache device.

Re: IP2CC Global Cache Commands

Posted: Wed Oct 24, 2012 1:07 pm
by dansonamission
Thanks for the info!

Your reply is the same as what i just found out by trial and error. The iTest was using port 4998 and to connect on 4999 I had to also set the serial device to use multiple port via the web interface.

Now just to try it in demopad!