-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.schema.json
54 lines (54 loc) · 1.91 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
47
48
49
50
51
52
53
54
{
"pluginAlias": "Somfy myLink",
"pluginType": "platform",
"schema": {
"type": "object",
"properties": {
"ipAddress": {
"title": "IP Address",
"type": "string",
"description": "IP Address of your MyLink. This should be a static IP Address",
"placeholder": "IP Address"
},
"systemID": {
"title": "System ID",
"type": "string",
"description": "In the myLink app, go to \"Integration\", choose one of the options that isn't Alexa or IFTTT, then choose \"Change System ID\". Once set, choose \"Get Integration report\".",
"placeholder": "System ID"
},
"reverseAll": {
"title": "Reverse All Channels",
"type": "boolean",
"description": "If your shades are all moving in the wrong direction, check this option. If only some are backwards, specify the individual channel ids below instead."
},
"reverseChannels": {
"title": "Reverse Channel IDs",
"description": "Use this section if you need to reverse some, but not all, of your shades",
"type": "array",
"items": {
"type": "number",
"description": "Enter the channel number (1 - 16), which can be found in the Edit -> RTS Programming Settings section of the MyLink app",
"minimum": 1,
"maximum": 16,
"step": 1
}
},
"hideChannels": {
"title": "Hide Channel IDs",
"type": "array",
"description": "Use this section if you want to prevent certain channels from showing in HomeKit",
"items": {
"type": "number",
"description": "Enter the channel number (1 - 16), which can be found in the Edit -> RTS Programming Settings section of the MyLink app",
"minimum": 1,
"maximum": 16,
"step": 1
}
}
},
"required": [
"ipAddress",
"systemID"
]
}
}