-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
35 lines (28 loc) · 816 Bytes
/
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
{
"bridge": {
"name": "Homebridge",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},
"description": "This is an example configuration file. You can use this as a template for creating your own configuration file.",
"platforms": [],
"accessories": [
{
"accessory": "OpcAccessory",
"name": "Light Strip",
"host": "localhost",
"port": 7890,
"fadeDuration": 1000,
"fadeOnDuration": 1000,
"fadeOffDuration": 1000,
"lightbulbs": [
{ "name": "Left", "map": [ [0, 0] ] },
{ "name": "Right", "map": [ [0, 39] ] }
],
"gradients": [{
"lightbulbNames": ["Left", "Right"],
"map": [ [0, 1, 38, 1] ]
}]
}]
}