-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-sample.json
69 lines (69 loc) · 1.24 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"platforms": [
{
"platform": "SynTexTuya",
"baseDirectory": "/var/homebridge/SynTex",
"username": "[email protected]",
"password": "xxxxxxxxxx",
"countryCode": "xx",
"options": {
"port": 1713,
"language": "us",
"platform": "smart_life",
"pollingInterval": 1200
},
"discovery": {
"addDevices": true,
"addScenes": true,
"generateConfig": true
},
"log": {
"debug": false
},
"accessories": [
{
"id": "ABCDEF1234567890",
"name": "Overwrite Accessory",
"services": [
{
"type": "outlet"
}
]
},
{
"id": "multi1",
"name": "Multi Accessory",
"services": [
{
"id": "ABCDEF1234567890",
"type": "outlet",
"name": "Basic Outlet"
},
{
"id": "ABCDEF1234567890",
"type": "led",
"name": "Basic LED"
},
{
"id": "GHIJKL0987654321",
"type": "dimmer",
"name": "Basic Dimmer"
},
{
"id": "GHIJKL0987654321",
"type": "dimmer",
"name": "Modified Dimmer",
"min": 12,
"max": 32.5
},
{
"id": "MNOPQR1234567890",
"type": "blind",
"name": "Basic Blind"
}
]
}
]
}
]
}