-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.json
45 lines (42 loc) · 1.07 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
45
{
"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 fake accessory and one fake platform. You can use this as a template for creating your own configuration file containing devices you actually own.",
"accessories": [
],
"platforms": [
{
"platform" : "Telldus",
"name" : "Telldus Liv!e",
"public_key" : "telldus public key",
"private_key" : "telldus private key",
"token" : "telldus token",
"token_secret" : "telldus token secret",
"unknown_accessories": [
{
"id": 123,
"model": "selflearning-switch",
"manufacturer": "Nexa"
},
{
"id": 456,
"model": "temperaturehumidity",
"manufacturer": "Oregon",
"name": "My Custom Name"
},
{
"id": 789,
"name": "Only name altered"
},
{
"id": 987,
"disabled": true
}
]
}
]
}