forked from hillaliy/homebridge-midea-air
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.schema.json
127 lines (127 loc) · 3.35 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
{
"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
}
},
"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",
"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",
"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]
}
]
},
"fanOnlyMode":{
"title": "Enable Fan Mode",
"type": "boolean",
"default": false,
"required": false
},
"OutdoorTemperature":{
"title": "Enable Outdoor Temperture Sensor",
"type": "boolean",
"default": false,
"required": false
}
}
}
}
}
},
"layout": [
{
"key": "properties",
"type": "array",
"items": [
"user",
"password"
]
},
{
"key": "devices",
"type": "array",
"expandable": true,
"buttonText": "Add device",
"items": [
"devices[].deviceId",
"devices[].supportedSwingMode",
"devices[].temperatureSteps",
"devices[].fanOnlyMode",
"devices[].OutdoorTemperature"
]
},
{
"key": "Advanced Settings",
"type": "fieldset",
"expandable": true,
"description": "Don't change these, unless you understand what you're doing.",
"items": [
"interval"
]
}
]
}