-
Notifications
You must be signed in to change notification settings - Fork 50
/
config-sample.json
33 lines (33 loc) · 1011 Bytes
/
config-sample.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
{
"bridge": {
"name": "Homebridge",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"description": "This is an example configuration file with one Hygrotermograph accessory and one MiFlora accessory. You can use this as a template for creating your own configuration file containing devices you actually own.",
"accessories": [
{
"accessory": "Hygrotermograph",
"type": "Hygrotermograph",
"name": "Temperature & Humidity",
"address": "4c:64:a8:d0:ae:65",
"timeout": 15,
"temperatureName": "Temperature",
"humidityName": "Humidity",
"fakeGatoEnabled": true
},
{
"accessory": "Hygrotermograph",
"type": "MiFlora",
"name": "Zamioculcas",
"address": "cd:ef:4b:62:69:99",
"timeout": 15,
"temperatureName": "Temperature",
"moistureName": "Moisture",
"fertilityName": "Fertility",
"illuminanceName": "Plant light",
"fakeGatoEnabled": true
}
]
}