-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.json
99 lines (99 loc) · 2.04 KB
/
config.sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"command": "./send {0} {1} {2}",
"port": 8080,
"timer-check-interval": 30,
"ui-settings": {
"enable-masterout": true,
"text": {
"title-add-timer": "Add Timer",
"title-are-you-sure": "Are you sure?",
"text-are-you-sure": "This will switch of all receivers...",
"label-time": "Time in",
"label-action": "Action",
"label-master-out": "Master Off",
"timer-type-1": "Switch On",
"timer-type-2": "Switch Off",
"timer-type-3": "Toggle",
"btn-save": "Save",
"btn-cancel": "Cancel",
"btn-okay": "Okay"
}
},
"groups": [
{
"name": "Lights",
"items": [
{
"name": "Bright-Light",
"system": "11111",
"remote": 1,
"state": 0
},
{
"name": "LED-Strips",
"system": "11111",
"remote": 3,
"state": 0
},
{
"name": "Moodlight",
"system": "11111",
"remote": 2,
"state": 0
}
]
},
{
"name": "Multimedia",
"items": [
{
"name": "Awesome Big TV",
"system": "11110",
"remote": 1,
"state": 0
},
{
"name": "Hispter-Retro-Radio",
"system": "11110",
"remote": 3,
"state": 0
},
{
"name": "Steambox",
"system": "11110",
"remote": 2,
"state": 0
}
]
},
{
"name": "Home appliances",
"items": [
{
"name": "Fancy Espresso Machine",
"system": "11100",
"remote": 3,
"state": 1
},
{
"name": "Freezer",
"system": "11100",
"remote": 1,
"state": 0
},
{
"name": "Fridge",
"system": "11100",
"remote": 4,
"state": 0
},
{
"name": "Microwave",
"system": "11100",
"remote": 2,
"state": 0
}
]
}
]
}