-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathconfig.schema.json
229 lines (229 loc) · 7.38 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
{
"pluginAlias": "TplinkSmarthome",
"pluginType": "platform",
"singular": true,
"headerDisplay": "TP-Link Smart Home Plugin.<p>Most users do not require configuration and can just click \"Save\" to get started. See [README](https://github.com/plasticrake/homebridge-tplink-smarthome/blob/master/README.md) for more information.</p>",
"footerDisplay": "",
"schema": {
"type": "object",
"required": ["name"],
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "TplinkSmarthome",
"minLength": 1
},
"addCustomCharacteristics": {
"title": "Adds energy monitoring characteristics viewable in Eve app",
"description": "<b>Plug</b>: Amperes, KilowattHours, VoltAmperes, Volts, Watts.<br/><b>Bulb</b>: Watts",
"type": "boolean",
"default": true
},
"emeterPollingInterval": {
"title": "Energy Monitoring Polling Interval (seconds)",
"type": "integer",
"description": "How often to check device energy monitoring the background (seconds). Set to 0 to disable.",
"placeholder": "20"
},
"inUseThreshold": {
"title": "In Use Threshold (Watts)",
"type": "number",
"description": "(Watts) For plugs that support energy monitoring (e.g. HS110), min power draw for <b>OutletInUse</b>",
"placeholder": "0"
},
"switchModels": {
"type": "array",
"description": "Matching models are created in HomeKit as a Switch instead of an Outlet. Default: ['HS200', 'HS210']",
"items": {
"type": "string"
}
},
"discoveryPort": {
"title": "Port",
"type": "number",
"description": "Port to bind UDP socket for discovery. If port is not specified or is 0, the operating system will attempt to bind to a random port. Default: 0",
"placeholder": "0"
},
"broadcast": {
"title": "Broadcast Address",
"type": "string",
"description": "Broadcast Address. If discovery is not working tweak to match your subnet, eg: 192.168.0.255",
"placeholder": "255.255.255.255",
"format": "ipv4"
},
"pollingInterval": {
"title": "Polling Interval (seconds)",
"type": "integer",
"description": "How often to check device status in the background (seconds)",
"placeholder": "10"
},
"deviceTypes": {
"title": "Device Types",
"type": "array",
"description": "Choose which types of devices this plugin should discover",
"default": ["plug", "bulb"],
"titleMap": [
{ "name": "Plugs", "value": "plug" },
{ "name": "Bulbs", "value": "bulb" }
],
"items": {
"type": "string",
"enum": ["plug", "bulb"]
}
},
"macAddresses": {
"title": "Allow MAC Addresses",
"description": "Allow-list of mac addresses to include. If specified will ignore other devices. Supports glob-style patterns",
"type": "array",
"items": {
"title": "Mac Address",
"type": "string"
}
},
"excludeMacAddresses": {
"title": "Exclude MAC Addresses",
"description": "Deny-list of mac addresses to exclude. Supports glob-style patterns",
"type": "array",
"items": {
"title": "Mac Address",
"type": "string"
}
},
"devices": {
"title": "Manual List Of Devices",
"type": "array",
"items": {
"title": "Device",
"type": "object",
"required": ["host"],
"properties": {
"host": {
"title": "Host",
"type": "string"
},
"port": {
"title": "Port",
"type": "string",
"placeholder": "9999"
}
}
}
},
"timeout": {
"title": "Timeout (seconds)",
"type": "integer",
"description": "(seconds) Communication Timeout",
"placeholder": "15"
},
"transport": {
"type": "string",
"description": "Use TCP or UDP for device communication. Discovery will always use UDP. Default: TCP",
"placeholder": "tcp",
"enum": ["tcp", "udp"],
"titleMap": [
{ "name": "TCP", "value": "tcp" },
{ "name": "UDP", "value": "udp" }
]
},
"waitTimeUpdate": {
"title": "Wait Time Update (ms)",
"type": "integer",
"description": "The time (ms) to wait to combine similar commands for a device before sending a command to a device. Default: 100.",
"placeholder": "100"
},
"devicesUseDiscoveryPort": {
"title": "Devices Use Discovery Port",
"description": "When true, sets the device port to the port the device used when responding to the discovery ping. When false, always uses default port (9999). You probably don't want to change this.",
"type": "boolean",
"default": false
}
}
},
"layout": [
"name",
{
"type": "fieldset",
"title": "HomeKit (Optional)",
"description": "Customize how devices are exposed in HomeKit",
"expandable": true,
"items": [
"addCustomCharacteristics",
"emeterPollingInterval",
"inUseThreshold",
{
"key": "switchModels",
"type": "array",
"buttonText": "Add Switch Model",
"items": {
"title": "Model",
"type": "string",
"required": true
}
}
]
},
{
"type": "fieldset",
"title": "Device Discovery (Optional)",
"description": "Customize device discovery",
"expandable": true,
"items": [
"broadcast",
"pollingInterval",
"deviceTypes",
"discoveryPort",
{
"key": "macAddresses",
"type": "array",
"buttonText": "Add MAC Address",
"items": {
"title": "Allow MAC Address",
"type": "string",
"required": true
}
},
{
"key": "excludeMacAddresses",
"type": "array",
"buttonText": "Add MAC Address",
"items": {
"title": "Exclude MAC Address",
"type": "string",
"required": true
}
},
{
"type": "fieldset",
"title": "Manual Discovery",
"description": "If automatic discovery is not working, try this.",
"expandable": true,
"items": [
{
"key": "devices",
"type": "array",
"buttonText": "Add Device",
"items": ["devices[].host", "devices[].port"]
},
{
"type": "help",
"helpvalue": "Before resorting to manually specifying devices. Try setting the broadcast address and check your router/switch/firewall configuration. You must assign static IP addresses to your devices to use this configuration."
}
]
}
]
},
{
"type": "fieldset",
"title": "Advanced Settings (Optional)",
"description": "Don't change these, unless you understand what you're doing.",
"expandable": true,
"items": [
"timeout",
"waitTimeUpdate",
"transport",
"devicesUseDiscoveryPort"
]
}
]
}