-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.example.json
51 lines (51 loc) · 1.26 KB
/
config.example.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
{
"bridge": {
"name": "Homebirdge",
"username": "CC:22:3D:E3:CE:33",
"port": 51826,
"pin": "012-34-567"
},
"description": "Homebridge Example",
"accessories": [
{
"accessory": "Weather",
"apikey": "YOUR_KEY_HERE",
"locationByCoordinates": "lat=48.70798341&lon=9.17019367",
"name": "Current Temp",
"showHumidity": true,
"nameHumidity": "Current Humidity",
"pollingInterval": 10,
"enableHistory": true,
"unit": "metric"
},
{
"accessory": "Weather",
"apikey": "YOUR_KEY_HERE",
"locationByCoordinates": "lat=48.70798341&lon=9.17019367",
"name": "Today Min",
"type": "min"
},
{
"accessory": "Weather",
"apikey": "YOUR_KEY_HERE",
"locationByCoordinates": "lat=48.70798341&lon=9.17019367",
"name": "Today Max",
"type": "max"
},
{
"accessory": "Weather",
"apikey": "YOUR_KEY_HERE",
"locationByCoordinates": "lat=48.70798341&lon=9.17019367",
"name": "Cloudiness",
"type": "clouds"
},
{
"accessory": "Weather",
"apikey": "YOUR_KEY_HERE",
"locationByCoordinates": "lat=48.70798341&lon=9.17019367",
"name": "Sun",
"type": "sun",
"pollingInterval": 10
}
]
}