-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.schema.json
39 lines (39 loc) · 1.1 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
{
"pluginAlias": "JvcProjectorPower",
"pluginType": "accessory",
"singular": false,
"schema": {
"type": "object",
"required": [
"name",
"projector_ip"
],
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"description": "Name of the accessory instance."
},
"projector_ip": {
"type": "string",
"description": "IP of a JVC projector supporting control over Ethernet based IP."
},
"projector_password": {
"type": "string",
"description": "Optional network password for JVC projector."
},
"python_path": {
"type": "string",
"description": "Path to python for invoking JVC IP API. Default is '/usr/bin/python'."
},
"poll_interval": {
"type": "integer",
"description": "Polling interval in seconds for the power state. Default is 3."
},
"connection_delay_interval": {
"type": "integer",
"description": "Delay in seconds between consecutive connections to the projector. Default is 1."
}
}
}
}