-
Notifications
You must be signed in to change notification settings - Fork 6
/
config-sample.json
57 lines (54 loc) · 1.96 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"bridge": {
"name": "Homebridge",
"username": "xxxxxxxx",
"port": 51826,
"pin": "xxxxxxxx",
},
"accessories": [
{
"accessory": "Http",
"name": "GPIO OUTPUT EXAMPLE NAME",
"switchHandling": "yes",
"http_method": "POST",
"on_url": "http://localhost:8000/GPIO/4/value/1",
"off_url": "http://localhost:8000/GPIO/4/value/0",
"status_url": "http://localhost:8000/GPIO/4/value",
"username" : "xxxxxxxx",
"password" : "xxxxxxxx"
},
{
"accessory": "Http",
"name": "GPIO INPUT EXAMPLE NAME",
"switchHandling": "realtime",
"http_method": "GET",
"on_url": "http://localhost/GPIO/22/value/1",
"off_url": "http://localhost/GPIO/22/value/0",
"status_url": "http://localhost/GPIO/22/value",
"username" : "webiopi",
"password" : "xxxxxxxx"
}
],
"platforms": [
{
"platform": "HarmonyHub",
"name": "HarmonyWoonkamer"
},
{
"platform": "Nest",
"token" : "xxxxxxxx",
"clientId": "xxxxxxxx",
"clientSecret": "xxxxxxxx",
"disable": "Thermostat.Eco",
"code": "xxxxxxxx",
"username" : "xxxxxxxx",
"password" : "xxxxxxxx"
},
{
"platform": "WS",
"name": "Temperatuur",
"apikey": "xxxxxxxx",
"station": "xxxxxxxx"
}
]
}