-
Notifications
You must be signed in to change notification settings - Fork 63
/
config.json
42 lines (42 loc) · 1.13 KB
/
config.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
{
"name": "Gree HVAC MQTT bridge",
"version": "1.2.4",
"slug": "gree_hvac_mqtt_bridge",
"description": "Hass.io addon for controlling Gree air conditioners using the MQTT climate platform",
"url": "https://github.com/aaronsb/gree-hvac-mqtt-bridge",
"arch": [ "aarch64", "amd64", "armhf", "armv7", "i386" ],
"startup": "application",
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"options": {
"mqtt": {
"broker_url": "mqtt://localhost",
"username": "",
"password": "",
"retain": ""
},
"devices": [
{
"hvac_host": "192.168.1.255",
"mqtt_topic_prefix": "home/greehvac"
}
]
},
"schema": {
"hvac_host": "str?",
"mqtt": {
"broker_url": "str",
"topic_prefix": "str?",
"username": "str?",
"password": "str?",
"retain": "str?"
},
"devices": [
{
"hvac_host": "str",
"mqtt_topic_prefix": "str"
}
]
}
}