-
Notifications
You must be signed in to change notification settings - Fork 50
/
config.schema.json
executable file
·45 lines (45 loc) · 1.43 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
{
"pluginAlias": "HomeMatic",
"pluginType": "platform",
"singular": true,
"headerDisplay": "Homebridge plugin for the Homematic CCUs",
"footerDisplay": "For a detailed description, see the [README](https://github.com/thkl/homebridge-homematic#readme) file.",
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "HomeMatic CCU",
"required": true
},
"ccu_ip": {
"title": "CCU IP",
"type": "string",
"description": "The IP Adress of your CCU"
},
"subsection": {
"title": "Subsection",
"type": "string",
"default": "Homekit",
"required": true,
"description": "All devices with this subsection will be polled from your ccu"
},
"enable_hmip": {
"title": "Enable HmIP Devices",
"type": "boolean",
"default": true
},
"enable_wired": {
"title": "Enable Wired Devices",
"type": "boolean",
"default": false
},
"ios10": {
"title": "HomeKit > IOS10",
"type": "boolean",
"default": true
}
}
}
}