-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.json.sample.json
105 lines (93 loc) · 2.95 KB
/
config.json.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
"platforms": [
{
"platform": "Paradox",
"ip": "192.168.1.1",
"port": 10000,
"password": "password",
"mqtt": true,
"mqtturl": "x.x.x.x",
"qos": 0,
"retain": false,
"mqttusername": "user",
"mqttpassword": "password",
"logindelay": 3800,
"polldelay": 5000,
"waitafterlogin": 600,
"delaybetweencmds": 250,
"logoutdelay": 500,
"logindelayafterreconnect": 1000,
"accessories": [
{
"name": "Alarm_Partition_1",
"config": {
"type": "Alarm",
"partition": 0,
"topic": "Paradox/partition1/"
}
},
{
"name": "Alarm_Partition_2|inactive",
"config": {
"type": "Alarm",
"partition": 1,
"topic": "Paradox/partition2/"
}
},
{
"name": "Connected",
"config": {
"type": "Connected"
}
},
{
"name": "Garage Door",
"config": {
"type": "Garage Door",
"zone": 1,
"pgm": 0,
"doorOpensInSeconds": 15,
"topic": "Paradox/garagedoor1/",
"debounceDelay" : 500
}
},
{
"name": "Bedroom",
"config": {
"type": "Motion Sensor",
"zone": 2,
"topic": "Paradox/motionsensor1/",
"debounceDelay" : 0
}
},
{
"name": "Kitchen",
"config": {
"type": "Smoke Sensor",
"zone": 3,
"topic": "Paradox/smokesensor1/",
"debounceDelay" : 0
}
},
{
"name": "Back Door",
"config": {
"type": "Contact Sensor",
"zone": 4,
"topic": "Paradox/contactsensor1/",
"debounceDelay" : 0
}
},
{
"name": "Gate",
"config": {
"type": "Garage Door",
"zone": 5,
"pgm": 1,
"doorOpensInSeconds": 25,
"topic": "Paradox/gate1/",
"debounceDelay" : 500
}
}
]
}
]