-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
188 lines (187 loc) · 5.05 KB
/
app.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"id": "nl.philips.zigbee",
"name": {
"en": "Philips Zigbee"
},
"description": {
"en": "Philips Zigbee",
"nl": "Philips Zigbee"
},
"category": [
"lights"
],
"version": "1.0.0",
"compatibility": ">=1.5.0",
"sdk": 2,
"author": {
"name": "Kasteleman",
"email": "[email protected]"
},
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"drivers": [
{
"id": "motion",
"name": {
"en": "Motion Sensor",
"nl": "Motion Sensor"
},
"class": "sensor",
"capabilities": [
"alarm_motion",
"measure_luminance",
"measure_temperature",
"measure_battery",
"alarm_battery"
],
"images": {
"large": "drivers/motion/assets/images/large.png",
"small": "drivers/motion/assets/images/small.png"
},
"zigbee": {
"manufacturerName": "Philips",
"productId": "SML001",
"deviceId": 2128,
"profileId": 49246,
"learnmode": {
"instruction": {
"en": "Toggle the Plug to start pairing.\n\nIf pairing does not automatically start, try turning the Plug on and off 6 times.",
"nl": "Zet de Plug uit en weer aan.\n\nWordt de Plug niet automatisch toegevoegd, probeer hem dan 6 keer aan en uit te zetten."
}
}
},
"settings": [
{
"id": "batteryThreshold",
"type": "number",
"label": {
"en": "Battery Low Alarm Voltage Threshold",
"nl": "Batterij laag Voltage Drempel"
},
"hint": {
"en": "This setting determines the threshold before a battery alarm is given.",
"nl": "Deze instelling bepaalt de drempelwaarde opdat een batterij alarm wordt gegeven."
},
"value": 2.9,
"attr": {
"step": 0.1,
"min": 0,
"max": 6553
}
},
{
"id": "minReportMotion",
"type": "number",
"label": {
"en": "Min report interval for motion",
"nl": "Min report interval voor beweging"
},
"hint": {
"en": "Min interval before a report is send to Homey",
"nl": "Min tijd voordat een report naar Homey wordt gestuurd"
},
"value": 1,
"attr": {
"step": 1,
"min": 1,
"max": 86400
}
},
{
"id": "maxReportMotion",
"type": "number",
"label": {
"en": "Max report interval for motion",
"nl": "Max report interval voor beweging"
},
"hint": {
"en": "Max interval before a report is send to Homey",
"nl": "Max tijd voordat een report naar Homey wordt gestuurd"
},
"value": 300,
"attr": {
"step": 1,
"min": 60,
"max": 86400
}
},
{
"id": "minReportLux",
"type": "number",
"label": {
"en": "Min report interval for lux",
"nl": "Min report interval voor lux"
},
"hint": {
"en": "Min interval before a report is send to Homey",
"nl": "Min tijd voordat een report naar Homey wordt gestuurd"
},
"value": 300,
"attr": {
"step": 1,
"min": 1,
"max": 86400
}
},
{
"id": "maxReportLux",
"type": "number",
"label": {
"en": "Max report interval for lux",
"nl": "Max report interval voor lux"
},
"hint": {
"en": "Max interval before a report is send to Homey",
"nl": "Max tijd voordat een report naar Homey wordt gestuurd"
},
"value": 900,
"attr": {
"step": 1,
"min": 60,
"max": 86400
}
},
{
"id": "minReportTemp",
"type": "number",
"label": {
"en": "Min report interval for temperature",
"nl": "Min report interval voor temperatuur"
},
"hint": {
"en": "Min interval before a report is send to Homey",
"nl": "Min tijd voordat een report naar Homey wordt gestuurd"
},
"value": 1800,
"attr": {
"step": 1,
"min": 1,
"max": 86400
}
},
{
"id": "maxReportTemp",
"type": "number",
"label": {
"en": "Max report interval for temperature",
"nl": "Max report interval voor temperatuur"
},
"hint": {
"en": "Max interval before a report is send to Homey",
"nl": "Max tijd voordat een report naar Homey wordt gestuurd"
},
"value": 3600,
"attr": {
"step": 1,
"min": 60,
"max": 86400
}
}
]
}
],
"flow": {
}
}