forked from arthurkrupa/gree-hvac-mqtt-bridge
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.json
44 lines (44 loc) · 1.2 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
43
44
{
"name": "Cooper&Huntrer HVAC MQTT bridge",
"version": "1.4.3",
"slug": "cooper_hunter_hvac_mqtt_bridge",
"description": "Hass.io addon for controlling Cooper&Huntrer air conditioners using the MQTT climate platform",
"startup": "application",
"boot": "auto",
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"],
"hassio_api": true,
"hassio_role": "default",
"services": [
"mqtt:want"
],
"options": {
"interval": 60,
"name": "LivingRoom AC",
"mqtt": {
"broker_url": "mqtt://localhost",
"username": "",
"password": ""
},
"devices": [{
"name": "AC Livingroom",
"hvac_host": "192.168.107.3",
"mqtt_topic_prefix": "homeassistant/climate/ac_livingroom"
}]
},
"schema": {
"hvac_host": "str?",
"name": "str",
"interval": "int",
"mqtt": {
"broker_url": "str",
"topic_prefix": "str?",
"username": "str?",
"password": "str?"
},
"devices": [{
"name": "str",
"hvac_host": "str",
"mqtt_topic_prefix": "str"
}]
}
}