-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd4Config.json
More file actions
105 lines (105 loc) · 3.34 KB
/
cmd4Config.json
File metadata and controls
105 lines (105 loc) · 3.34 KB
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
100
101
102
103
104
105
{
"platform": "Cmd4",
"name": "Cmd4",
"accessories": [
{
"type": "Lightbulb",
"displayName": "Light",
"on": "FALSE",
"brightness": 0,
"name": "Light",
"stateChangeResponseTime": 3,
"polling": [
{
"characteristic": "on",
"interval": 2,
"timeout": 1000
},
{
"characteristic": "brightness",
"interval": 2,
"timeout": 1000
}
],
"state_cmd": "/home/pi/accessories/light/light"
},
{
"type": "Thermostat",
"displayName": "Thermostat",
"targetHeatingCoolingState": "OFF",
"targetTemperature": 25,
"currentTemperature": 25,
"temperatureDisplayUnits": "CELSIUS",
"name": "Thermostat",
"stateChangeResponseTime": 3,
"polling": [
{
"characteristic": "targetHeatingCoolingState",
"interval": 2,
"timeout": 1000
},
{
"characteristic": "targetTemperature",
"interval": 2,
"timeout": 1000
}
],
"state_cmd": "/home/pi/accessories/thermostat/thermostat"
},
{
"type": "HumidifierDehumidifier",
"displayName": "Dehumidifier",
"currentRelativeHumidity": 60,
"currentHumidifierDehumidifierState": "DEHUMIDIFYING",
"targetHumidifierDehumidifierState": "DEHUMIDIFIER",
"active": "INACTIVE",
"name": "HumidifierDehumidifier",
"stateChangeResponseTime": 3,
"polling": [
{
"characteristic": "targetHumidifierDehumidifierState",
"interval": 2,
"timeout": 1000
},
{
"characteristic": "active",
"interval": 2,
"timeout": 1000
}
],
"state_cmd": "/home/pi/accessories/thermostat/thermostat"
},
{
"type": "AirPurifier",
"displayName": "AirPurifier",
"active": "ACTIVE",
"currentAirPurifierState": "INACTIVE",
"targetAirPurifierState": "MANUAL",
"name": "AirPurifier",
"rotationSpeed": 0,
"polling": [
{
"characteristic": "active",
"interval": 2,
"timeout": 1000
},
{
"characteristic": "currentAirPurifierState",
"interval": 2,
"timeout": 1000
},
{
"characteristic": "targetAirPurifierState",
"interval": 2,
"timeout": 1000
},
{
"characteristic": "rotationSpeed",
"interval": 2,
"timeout": 1000
}
],
"state_cmd": "/home/pi/accessories/airPurifier/airPurifier"
}
]
}