-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.schema.json
233 lines (232 loc) · 7.91 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
{
"pluginAlias": "Yeelighter",
"pluginType": "platform",
"singular": true,
"headerDisplay": "You must enable LAN control for the lights.",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Yeelighter",
"required": true
},
"timeout": {
"title": "Timeout for requests",
"type": "integer",
"default": "5000",
"minimum": 0,
"maximum": 600000,
"required": false,
"description": "The timeout allowed for lights to respond to requests (in ms)"
},
"interval": {
"title": "Polling interval for requests (0 means never)",
"type": "integer",
"default": 60000,
"minimum": 5000,
"maximum": 600000,
"required": false,
"description": "The frequency that the lights will be queried for updates (in ms)"
},
"ctforcolor": {
"title": "Allow CT to be set for RGB lights",
"type": "boolean",
"default": "true",
"required": false,
"description": "color temperature setting combined with color setting enabled."
},
"blocking": {
"title": "use blocking getters (old behavior)",
"type": "boolean",
"default": "false",
"required": false,
"description": "If enabled, instead of regularly pulling updates from the lights, this will query updates only when homekit requests them. This has proven to be problematic since it freezes the homekit UI while waiting for updates."
},
"split": {
"title": "split lights with multiple services into separate homekit lights",
"type": "boolean",
"required": false,
"default": false,
"description": "Instead of having mulitple services as sub-items in one light, separate them into multiple lights."
},
"override": {
"type": "array",
"items": {
"title": "Override Light Configuration",
"type": "object",
"properties": {
"id": {
"title": "Identifier of the light",
"type": "string",
"pattern": "^0x[0-9a-fA-F]{16}",
"required": true
},
"name": {
"title": "Name of the light",
"type": "string",
"required": false,
"description": "This name will be displayed in the logs instead if the id"
},
"log": {
"title": "Detailed logging of this light",
"type": "boolean",
"required": false
},
"color": {
"title": "Treat this as an HSV color light",
"type": "boolean",
"required": false
},
"backgroundLight": {
"title": "Add an extra control for ambient light",
"type": "boolean",
"required": false
},
"nightLight": {
"title": "Add an extra range for moonlight mode",
"type": "boolean",
"required": false
},
"ignored": {
"title": "Ignore this light",
"type": "boolean",
"required": false
},
"separateAmbient": {
"title": "Manage the Ambient light as separate Accessory",
"type": "boolean",
"required": false
},
"offOnDisconnect": {
"title": "Switch light off in homekit when disconnected",
"type": "boolean",
"required": false
},
"colorTemperature": {
"title": "Override Light Configuration",
"type": "object",
"required": false,
"properties": {
"min": {
"title": "Minimal color temperature (in Kelvin)",
"type": "integer",
"required": true,
"minimum": 0,
"maximum": 10000
},
"max": {
"title": "Maximum color temperature (in Kelvin)",
"type": "integer",
"required": true,
"minimum": 0,
"maximum": 10000
}
}
},
"address": {
"title": "Force IP Address",
"type": "string",
"required": false,
"description": "Create a light with this IP address even though it may not be detected"
}
}
}
},
"manual": {
"type": "array",
"items": {
"title": "Manual Lights",
"description": "This is to manually add lights if detection doesn't work",
"type": "object",
"properties": {
"id": {
"title": "Identifier of the light (from Yeelight app)",
"type": "string",
"pattern": "^0x[0-9a-fA-F]{16}",
"required": true
},
"address": {
"title": "IP Address of the light",
"type": "string",
"required": true,
"description": "Create a light with this IP address even though it may not be detected"
},
"name": {
"title": "Name of the light",
"type": "string",
"required": false,
"description": "This name will be displayed in the logs instead if the id"
},
"model": {
"title": "Model of the light",
"type": "string",
"required": false,
"description": "This should be the model name"
},
"support": {
"title": "Supported properties (space separated)",
"type": "string",
"required": false,
"description": "This describes the properties that can be set on the light"
},
"log": {
"title": "Detailed logging of this light",
"type": "boolean",
"required": false
},
"color": {
"title": "Treat this as an HSV color light",
"type": "boolean",
"required": true
},
"backgroundLight": {
"title": "Add an extra control for ambient light",
"type": "boolean",
"required": true
},
"nightLight": {
"title": "Add an extra range for moonlight mode",
"type": "boolean",
"required": true
},
"separateAmbient": {
"title": "Manage the Ambient light as separate Accessory",
"type": "boolean",
"required": false
},
"colorTemperature": {
"title": "Override Light Configuration",
"type": "object",
"required": false,
"properties": {
"min": {
"title": "Minimal color temperature (in Kelvin)",
"type": "integer",
"required": true,
"minimum": 0,
"maximum": 10000
},
"max": {
"title": "Maximum color temperature (in Kelvin)",
"type": "integer",
"required": true,
"minimum": 0,
"maximum": 10000
}
}
},
"ignorePower": {
"title": "Ignore the power setting from Homekit and rely on brightness only",
"type": "boolean",
"required": false,
"default": false,
"description": "Homekit sends a power on before brightness changes. This will tamper with moonlight settings."
}
}
}
}
}
}
}