generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
345 lines (345 loc) · 10.2 KB
/
config.schema.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
{
"pluginAlias": "Homebridge Virtual Device",
"pluginType": "platform",
"singular": true,
"author": "mkz212",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "Plugin name",
"type": "string",
"required": true,
"default": "Virtual Device"
},
"devices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"description": "Name of device, as it will be show in HomeKit.",
"type": "string",
"required": true
},
"type": {
"title": "Type",
"description": "Type of the device: switch, dimmer, blind, lock, security, thermostat, etc.",
"type": "string",
"default": "switch",
"required": true,
"oneOf": [
{
"title": "Switch",
"enum": [
"switch"
]
},
{
"title": "Dimmer",
"enum": [
"dimmer"
]
},
{
"title": "Blind / roller shutter",
"enum": [
"blind"
]
},
{
"title": "Motion",
"enum": [
"motion"
]
},
{
"title": "Lock",
"enum": [
"lock"
]
},
{
"title": "Garage door",
"enum": [
"garage"
]
},
{
"title": "Security",
"enum": [
"security"
]
},
{
"title": "Thermostat",
"enum": [
"thermostat"
]
},
{
"title": "Heater Cooler",
"enum": [
"heatercooler"
]
}
]
},
"startupValue": {
"title": "Startup value",
"description": "Select device state after startup / restart.",
"type": "string",
"default": "off",
"required": true,
"oneOf": [
{
"title": "Set Off",
"enum": [
"off"
]
},
{
"title": "Set On",
"enum": [
"on"
]
}
]
},
"timerType": {
"title": "Timer type",
"description": "Timer type: disabled, activated when device is on, activated when device is off.",
"type": "string",
"default": "disabled",
"required": true,
"oneOf": [
{
"title": "Disabled",
"enum": [
"disabled"
]
},
{
"title": "When On -> set Off",
"enum": [
"whenOn"
]
},
{
"title": "When Off -> set On",
"enum": [
"whenOff"
]
}
]
},
"timerTime": {
"title": "Timer time",
"description": "Set time for timer.",
"type": "integer",
"required": false,
"condition": {
"functionBody": "return model.devices[arrayIndices].timerType !== 'disabled';"
}
},
"timerUnit": {
"title": "Timer Unit",
"description": "Timer unit: miliseconds, seconds, minutes, hours, days.",
"type": "string",
"default": "seconds",
"required": true,
"oneOf": [
{
"title": "Miliseconds",
"enum": [
"miliseconds"
]
},
{
"title": "Seconds",
"enum": [
"seconds"
]
},
{
"title": "Minutes",
"enum": [
"minutes"
]
},
{
"title": "Hours",
"enum": [
"hours"
]
},
{
"title": "Days",
"enum": [
"days"
]
}
],
"condition": {
"functionBody": "return model.devices[arrayIndices].timerType !== 'disabled';"
}
},
"timerReset": {
"title": "Reset timer",
"type": "boolean",
"default": true,
"description": "Reset timer on each activity. When this option is enabled, each activity of the device will reset the timer (e.g. re-enabling the device even though it is already turned on).",
"condition": {
"functionBody": "return model.devices[arrayIndices].timerType !== 'disabled';"
}
},
"timerDynamic": {
"title": "Dynamic timer",
"type": "boolean",
"default": false,
"description": "Only for dimmer and blind. When this option is enabled, time depends of value setted in HomeKit device - timer will change the device value by 1, up to 0 or 100 (depending on the option selected in Timer). Example: if you set 5 minutes in Timer Time and the device is set to 3, then total timer time will be 15 minutes.",
"condition": {
"functionBody": "return model.devices[arrayIndices].timerType !== 'disabled' && (model.devices[arrayIndices].type === 'dimmer' || model.devices[arrayIndices].type === 'blind');"
}
},
"timerStartup": {
"title": "Timer startup",
"description": "Set different time for timer on startup.",
"type": "integer",
"required": false,
"condition": {
"functionBody": "return model.devices[arrayIndices].timerType !== 'disabled';"
}
},
"sensor": {
"title": "Sensor",
"description": "Add additional sensor to device. It will actvate for 3 seconds. This is useful for automations.",
"type": "string",
"default": "disabled",
"required": true,
"oneOf": [
{
"title": "Disabled",
"enum": [
"disabled"
]
},
{
"title": "Activate when device set on",
"enum": [
"whenOn"
]
},
{
"title": "Activate when device set off",
"enum": [
"whenOff"
]
}
]
},
"sensorType": {
"title": "Sensor type",
"description": "Sensor type: motion, contact, occupancy, leak.",
"type": "string",
"required": true,
"default": "motion",
"oneOf": [
{
"title": "Motion",
"enum": [
"motion"
]
},
{
"title": "Contact",
"enum": [
"contact"
]
},
{
"title": "Occupancy",
"enum": [
"occupancy"
]
},
{
"title": "Leak",
"enum": [
"leak"
]
}
],
"condition": {
"functionBody": "return model.devices[arrayIndices].sensor !== 'disabled';"
}
}
}
}
}
}
},
"layout": [
{
"type": "array",
"key": "devices",
"title": "Devices",
"description": "",
"buttonText": "Add",
"expandable": false,
"expanded": true,
"items": [
{
"type": "fieldset",
"items": [
{
"type": "fieldset",
"title": "General",
"expandable": true,
"expanded": true,
"items": [
"devices[].name",
"devices[].type"
]
},
{
"type": "fieldset",
"title": "After start",
"expandable": true,
"expanded": false,
"items": [
"devices[].startupValue"
]
},
{
"type": "fieldset",
"title": "Timer",
"expandable": true,
"expanded": false,
"items": [
"devices[].timerType",
"devices[].timerTime",
"devices[].timerUnit",
"devices[].timerReset",
"devices[].timerDynamic",
"devices[].timerStartup"
]
},
{
"type": "fieldset",
"title": "Additional sensor",
"expandable": true,
"expanded": false,
"items": [
"devices[].sensor",
"devices[].sensorType"
]
}
]
}
]
}
]
}