forked from joe-ng/homebridge-dyson-link
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig-sample.json
More file actions
30 lines (29 loc) · 826 Bytes
/
config-sample.json
File metadata and controls
30 lines (29 loc) · 826 Bytes
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
{
"bridge": {
},
"description": "HomeBridge HTTP Status Control",
"accessories": [],
"platforms": [
// This is the config for this plugin
{
"platform": "DysonPlatform",
"name": "DysonPlatform",
"accessories": [
{
"ip": "ip of your device",
"displayName": "Name to be shown on Home App",
"serialNumber": "DYSON-XXX-XX-XXXXXXXX-XXX",
"password": "password of your device"
},
{
"ip": "ip of your second device",
"displayName": "Name to be shown on Home App",
"serialNumber": "DYSON-XXX-XX-XXXXXXXX-XXX",
"password": "password of your second device"
}
// If you have more than one device(s), just add the same config below
]
}
// End of the config
]
}