-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
42 lines (41 loc) · 1.08 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
{
"pluginAlias": "nuvo-platform",
"pluginType": "platform",
"singular": true,
"footerDisplay": "For More Help go to the [github page](https://github.com/Willmac16/homebridge-nuvo/blob/master/README.md).",
"schema": {
"type": "object",
"properties": {
"port": {
"title": "Path To Nuvo Device",
"type": "string",
"default": "/dev/tty.usbserial",
"required": true
},
"numZones": {
"title": "Number of Zones",
"type": "number",
"default": 8,
"minimum": 0,
"maximum": 16,
"required": true
},
"powerOnVolume": {
"title": "Power on Volume",
"type": "number",
"default": 40,
"minimum": 0,
"maximum": 100,
"required": false
},
"portRetryInterval": {
"title": "Port Retry Interval",
"type": "number",
"placeholder": 0,
"required": false,
"minimum": 0,
"description": "Frequency in seconds to attempt to connect to serialport if it fails. 0 disables retry."
}
}
}
}