generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.schema.json
153 lines (153 loc) · 6.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"pluginAlias": "homebridge-magichome-dynamic-platform",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"pruning": {
"type": "object",
"properties": {
"pruneMissingCachedAccessories": {
"title": "Prune Missing Accesories Next Restart",
"type": "boolean",
"default": false,
"required": true
},
"restartsBeforeMissingAccessoriesPruned": {
"title": "Number Restarts Before Missing Accessories Are Pruned",
"type": "integer",
"default": 3,
"required": true
},
"pruneAllAccessoriesNextRestart": {
"title": " Prune All MagicHome Accessories Next Restart (WARNING: Dangerous!)",
"type": "boolean",
"default": false,
"required": true
}
}
},
"whiteEffects": {
"type": "object",
"properties": {
"simultaniousDevicesColorWhite": {
"title": "Allow Simultaneous Color and White for Compatible Devices",
"type": "boolean",
"default": true,
"required": true
},
"colorWhiteThreshold": {
"title": "Saturation Threshold Between Color and White for Non-Simnultanious Devices",
"type": "integer",
"default": 10,
"required": true
},
"colorWhiteThresholdSimultaniousDevices": {
"title": "Saturation Threshold Between Color and White for Simultaneous Devices",
"type": "integer",
"default": 50,
"required": true
},
"colorOffThresholdSimultaniousDevices": {
"title": "Color Off Threshold for Simultaneous Devices",
"type": "integer",
"default": 5,
"required": true
}
}
},
"deviceManagement": {
"type": "object",
"properties": {
"blacklistOrWhitelist": {
"title": "Blacklist / Whitelist",
"type": "string",
"default": "blacklist",
"oneOf": [
{
"title": "Blacklist",
"enum": [
"blacklist"
]
},
{
"title": "Whitelist",
"enum": [
"whitelist"
]
}
],
"required": true
},
"blacklistedUniqueIDs": {
"title": "Blacklisted Unique ID",
"type": "array",
"items": {
"title": "Unique ID",
"type": "string",
"default": []
}
}
}
},
"advancedOptions": {
"type": "object",
"properties": {
"periodicDiscovery": {
"title": "Rescan the network.",
"description": "Rescan the network for new devices every 30 seconds.",
"type": "boolean",
"default": true,
"required": true
},
"namesWithMacAddress": {
"title": "Device names with MAC address.",
"description": "When this option is enabled, upon device registering each device name will contain the lst 6 digits of its MAC address, just like the default the MagicHome App gives. For example, when option is enabled a new lamp may get name of 'Bulb 22F481' instead of the default 'RGBW Non-Simultaneous.",
"type": "boolean",
"default": false,
"required": true
},
"logLevel": {
"title": "Log Level:",
"type": "integer",
"default": 3,
"oneOf": [
{
"title": "1 - Errors",
"enum": [
1
]
},
{
"title": "2 - Warnings",
"enum": [
2
]
},
{
"title": "3 - Info (Default)",
"enum": [
3
]
},
{
"title": "4 - Debug",
"enum": [
4
]
},
{
"title": "5 - Trace",
"enum": [
5
]
}
],
"required": true
}
}
}
}
}
}