Subversion Repositories HomeAutomation

Rev

Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
2061 linlun 1
<?php
2
 
2068 runge 3
$atomdHostname = "127.0.0.1";
4
$atomdPort = 1202;
2074 runge 5
$atomdOld = false;
2061 linlun 6
 
2068 runge 7
$pageConfiguration = array(
8
                           array("page" => "dimmers", 
9
                                 "title" => "Dimmers", 
2073 runge 10
                                 "aliases" => array("sovrumtak",
11
                                                    "sovrumdorr",
12
                                                    "sovrumvagg",
13
                                                    "hall")
14
                                 ),
15
                           array("page" => "info",
16
                                 "title" => "Information",
17
                                 "aliases" => array("sovrumtak",
18
                                                    "sovrumdorr",
19
                                                    "sovrumvagg",
2068 runge 20
                                                    "hall",
2073 runge 21
                                                    "garderobtemp")
22
                                 ),
23
                            array("page" => "irremotes",
24
                                  "title" => "IR Remote",
25
                                  "aliases" => array("tvbankut"),
26
                                  "remotes" => array("LG_MKJ42519615")
2074 runge 27
                                  ),
28
                            array("page" => "buttons",
29
                                  "title" => "TV Bedroom",
30
                                  "buttons" => array("On" => "Serial_Send tv ka 0 01",
31
                                                     "Screen On" => "Serial_Send tv kd 0 00",
32
                                                     "Screen Off" => "Serial_Send tv kd 0 01",
33
                                                     "Off" => "Serial_Send tv ka 0 00"
34
                                                     )
35
                                 )
2068 runge 36
                           );
37
 
2061 linlun 38
?>