forked from PJCzx/homebridge-thermostat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample-config.json
78 lines (76 loc) · 1.91 KB
/
sample-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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"bridge": {
"name": "Homebridge",
"username": "C1:38:5A:AC:39:40",
"port": 51826,
"pin": "000-00-000"
},
"description": "This is an example configuration for the Everything Homebridge plugin",
"accessories": [
{
"accessory": "Httpeverything",
"service": "Thermostat",
"name": "Thermostat (Maison)",
"apiBaseUrl": "http://localhost:8080/thermostat",
"apiSuffixUrl": "",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "WindowCovering",
"name": "Volet (Salon)",
"apiBaseUrl": "http://localhost:8080/window-covering",
"apiSuffixUrl": "/0",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "WindowCovering",
"name": "Volet (Salle à manger)",
"apiBaseUrl": "http://localhost:8080/window-covering",
"apiSuffixUrl": "/1",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "WindowCovering",
"name": "Volet (Bureau)",
"apiBaseUrl": "http://localhost:8080/window-covering",
"apiSuffixUrl": "/2",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "WindowCovering",
"name": "Volet (Cuisine)",
"apiBaseUrl": "http://localhost:8080/window-covering",
"apiSuffixUrl": "/3",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "WindowCovering",
"name": "Volets (Maison)",
"apiBaseUrl": "http://localhost:8080/window-covering",
"apiSuffixUrl": "/all",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "HumiditySensor",
"name": "Humidité",
"apiBaseUrl": "http://localhost:8080/humidity-sensor",
"apiSuffixUrl": "",
"forceRefreshDelay": 0
},
{
"accessory": "Httpeverything",
"service": "TemperatureSensor",
"name": "Temp. Ext.",
"apiBaseUrl": "http://localhost:8080/temperature-sensor",
"apiSuffixUrl": "",
"forceRefreshDelay": 0
}
],
"platforms": []
}