forked from nitaybz/homebridge-epson-iprojection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
42 lines (42 loc) · 948 Bytes
/
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": "Infocus Projector",
"pluginType": "accessory",
"schema": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Projector"
},
"ipAddress": {
"title": "IP Address",
"type": "string",
"required": true,
"default": "192.168.1.115"
},
"model": {
"title": "Model",
"type": "string",
"required": false,
"default": "",
"description": "Model number to display in Homekit."
},
"timeout": {
"title": "Timeout",
"type": "integer",
"required": false,
"description": "Specifies the timeout duration in ms for the web API calls. Default is 10000."
},
"refreshInterval": {
"title": "Refresh Interval",
"type": "integer",
"required": false,
"description": "Specifies the number of seconds between power status polls and updates. Default is 15."
},
"debug": {
"title": "Debug",
"type": "boolean",
"required": false
}
}
}