-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
34 lines (34 loc) · 1.17 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
{
"bridge": {
"name": "Homebridge",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"description": "This is an example configuration file. You can use this as a template for creating your own configuration file.",
"platforms": [
{
"platform": "mqttThermostats",
"name": "mqttThermostats",
"url": "<url of MQTT server (optional)>",
"username": "<username for MQTT (optional)>",
"password": "<password for MQTT (optional)>",
"heat_name": "<heat name optional switch accesory to control heating",
"heat_topic_get": "<topic to read heat state>",
"heat_topic_set": "<topic to set heat state>",
"heat_on_value": 1,
"heat_off_value": 0,
"thermostats": [
{
"name": "<name of termostat>",
"topics" :
{
"getCurrentTemperature": "<topic to get current temp>",
"setOn": "<topic to set relay controling temp>"
}
}
]
}
],
"accessories": []
}