generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.schema.json
37 lines (36 loc) · 1.17 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
{
"pluginAlias": "Nilan",
"pluginType": "platform",
"singular": true,
"schema": {
"devices": {
"type": "array",
"items": {
"title": "Device",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Compact P"
},
"host": {
"title": "IP Address",
"type": "string",
"required": true,
"format": "ipv4",
"default": "192.168.5.107",
"description": "Check the control panel in Super user mode under Settings -> Network Settings. Make sure you can ping the Nilan unit from your Homebridge device."
},
"schedule": {
"title": "Adjust for week schedule.",
"type": "boolean",
"default": true,
"description": "This option should be enabled, if you have a week schedule programmed on your control unit. The option ensures that the values reported in HomeKit update when the week program changes. Otherwise HmeKit just reflects the last set user value."
}
}
}
}
}
}