This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
config.schema.json
180 lines (180 loc) · 5.02 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"pluginAlias": "midea-air",
"pluginType": "platform",
"singular": true,
"customUi": false,
"headerDisplay": "Homebridge plugin for Midea AC",
"footerDisplay": "Created by @hillaliy",
"schema": {
"type": "object",
"properties": {
"user": {
"title": "Midea account email",
"type": "string",
"required": true
},
"password": {
"title": "Midea account password",
"type": "string",
"x-schema-form": {
"type": "password",
"required": true
}
},
"registeredApp": {
"title": "Midea Registered app",
"type": "string",
"required": true,
"default": "NetHomePlus",
"oneOf": [
{
"title": "NetHomePlus",
"enum": ["NetHomePlus"]
},
{
"title": "MideaAir",
"enum": ["MideaAir"]
},
{
"title": "MSmartHome",
"enum": ["MSmartHome"]
}
]
},
"interval": {
"title": "Update interval in seconds",
"description": "Time in seconds between each status polling of the Midea devices, Default is 30",
"type": "integer",
"default": 30,
"minimum": 0,
"maximum": 600
},
"devices": {
"type": "array",
"items": {
"title": "Device",
"type": "object",
"properties": {
"deviceId": {
"title": "Device ID",
"type": "string"
},
"supportedSwingMode": {
"title": "Supported Swing Mode (Only for AC)",
"description": "None, Vertical, Horizontal, Both You have to select which type your device supports",
"type": "string",
"default": "both",
"required": true,
"oneOf": [
{
"title": "None",
"enum": ["None"]
},
{
"title": "Vertical",
"enum": ["Vertical"]
},
{
"title": "Horizontal",
"enum": ["Horizontal"]
},
{
"title": "Both",
"enum": ["Both"]
}
]
},
"temperatureSteps": {
"title": "Change Temperature Steps on HomeKit (Only for AC)",
"description": "The options are 1˚ or 0.5˚, default is: 1˚",
"type": "number",
"default": 1,
"required": false,
"oneOf": [
{
"title": "0.5",
"enum": [0.5]
},
{
"title": "1",
"enum": [1]
}
]
},
"minTemp": {
"title": "Change minimum Threshold Temperature (Only for AC)",
"description": "Default is: 17˚",
"type": "integer",
"default": 17,
"minimum": 10,
"maximum": 35
},
"maxTemp": {
"title": "Change maximum Threshold Temperature (Only for AC)",
"description": "Default is: 30˚",
"type": "integer",
"default": 30,
"minimum": 10,
"maximum": 35
},
"fanOnlyMode": {
"title": "Enable Fan Mode (Only For AC)",
"type": "boolean",
"default": false,
"required": false
},
"OutdoorTemperature": {
"title": "Enable Outdoor Temperture Sensor (Only for AC)",
"type": "boolean",
"default": false,
"required": false
},
"useFahrenheit": {
"title": "Set Fahrenheit to default (Only for AC)",
"type": "boolean",
"default": false,
"required": false
},
"audibleFeedback": {
"title": "Set audibleFeedback",
"type": "boolean",
"default": false,
"required": false
}
}
}
}
}
},
"layout": [
{
"key": "properties",
"type": "array",
"items": ["user", "password", "registeredApp"]
},
{
"key": "devices",
"type": "array",
"expandable": true,
"buttonText": "Add device",
"items": [
"devices[].deviceId",
"devices[].supportedSwingMode",
"devices[].temperatureSteps",
"devices[].minTemp",
"devices[].maxTemp",
"devices[].fanOnlyMode",
"devices[].OutdoorTemperature",
"devices[].useFahrenheit",
"devices[].audibleFeedback"
]
},
{
"key": "Advanced Settings",
"type": "fieldset",
"expandable": true,
"description": "Don't change these, unless you understand what you're doing.",
"items": ["interval"]
}
]
}