generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.schema.json
46 lines (46 loc) · 1.46 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
{
"pluginAlias": "Homebridge Eltako for MiniSafe2",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Homebridge Eltako for MiniSafe2",
"required": true,
"description": "Plugin name as displayed in the homebridge log"
},
"ip": {
"title": "IP address of the MiniSafe2 in your local network.",
"type": "string",
"required": true,
"placeholder": "192.168.1.1"
},
"password": {
"title": "The password to access the MiniSafe2",
"description": "Can be left empty if an access token is used",
"type": "string",
"required": false,
"default": ""
},
"accessToken": {
"title": "The access token to access the MiniSafe2",
"description": "Only required if no password is used.",
"type": "string",
"required": false,
"default": ""
},
"queryLoopDelay": {
"title": "The delay in seconds to wait between two state queries.",
"description": "The states of all your devices have to be polled regularly. Doing this without a delay might downgrade the performance of the MiniSafe2. If you set the delay too high, HomeKit updates will be slow.",
"type": "integer",
"required": false,
"default": 2,
"minimum": 1,
"maximum": 60
}
}
}
}