forked from mmende/homebridge-samsungtv-control
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.schema.json
41 lines (41 loc) · 1.12 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
{
"pluginAlias": "SamsungTV2014",
"pluginType": "platform",
"schema": {
"type": "object",
"properties": {
"tvs": {
"title": "TVs",
"type": "array",
"items": {
"title": "TV",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"description": "Name for your TV",
"required": true
},
"ipAddress": {
"title": "IP Address",
"type": "string",
"description": "IP address of the TV",
"required": true
},
"sendDelay": {
"title": "Send Delay",
"type": "integer",
"description": "Delay in millis between sending TV commands"
},
"useFan": {
"title": "Use Fan Type for Volume",
"type": "boolean",
"description": "If checked, volume will be created as a fan type (such that brightness directives do not control volume)."
}
}
}
}
}
}
}