raspberry-remote icon indicating copy to clipboard operation
raspberry-remote copied to clipboard

Cannot call 01 / 08

Open Isengo1989 opened this issue 8 years ago • 0 comments

I can access all my remote plugs with my remote and als via ./send 00011.... Only the 01 and 08 I can´t access. What seems to be the problem here?

Actually I can http://192.168.1.100/index.php?group=00011&sys=1&switch=08&action=1&delay=0

But It never sets the action to 1 - its always on 0.

/*
 * define ip address and port here
 */
$source = $_SERVER['SERVER_ADDR'];
$target = '192.168.1.100';
$port = 11337;

/*
 * specify configuration of sockets to use
 *   array("systemcode", "group" , "plug", "description");
 * use empty string to create empty box
 *   ""
 *
 */
$config=array(
  /*
   * Elro
   */
  array("1","00011","16","1"),
  array("1","00011","08","2"),
  array("1","00011","04","3"),
  array("1","00011","02","4"),
  array("1","00011","01","5"),

Isengo1989 avatar Oct 22 '16 14:10 Isengo1989