-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.schema.json
52 lines (52 loc) · 1.96 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
{
"pluginAlias": "DaikinAirbase",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Homebridge plugin for the Daikin Airbase WiFi module",
"footerDisplay": "",
"schema": {
"type": "object",
"properties": {
"name": {
"description": "Plugin name as displayed in the homebridge log.",
"type": "string",
"required": true,
"default": "Daikin Airbase"
},
"hostname": {
"title": "Host name",
"description": "Forces the hostname of the controller, e.g. 192.168.1.10. If not set, the plugin will scan the network to find Airbase devices automatically.",
"type": "string",
"required": false,
"default": ""
},
"pollingInterval": {
"title": "Polling interval",
"description": "The polling interval for refreshing the platform's accessories state for automations, in minutes. By detault set to 5 minutes, it can be set to 0 to disable polling.",
"type": "integer",
"required": false,
"default": 5
},
"useIndividualZoneControls": {
"title": "Use individual zone controls",
"description": "Defines whether to map each zone switch to an individual accessory when a Daikin Zone Controller is available (true), or to map all zone switches to a single grouped accessory (false, default).",
"type": "boolean",
"required": false,
"default": false
}
}
},
"form": [
"name",
{
"type": "fieldset",
"expandable": true,
"title": "Advanced Settings",
"items": [
"hostname",
"pollingInterval",
"useIndividualZoneControls"
]
}
]
}