-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.default.json
More file actions
65 lines (65 loc) · 1.22 KB
/
Copy pathconfig.default.json
File metadata and controls
65 lines (65 loc) · 1.22 KB
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
{
"device_id": "airshell-01",
"skill": "airshell",
"alarms": {
"co2_high": {
"measurand": "co2",
"operator": ">",
"raise": 800,
"clear": 700,
"smoothing_min": 5
},
"pm25_high": {
"measurand": "pm25",
"operator": ">",
"raise": 35.5,
"clear": 25,
"smoothing_min": 2
},
"temp_high": {
"measurand": "temp",
"operator": ">",
"raise": 26,
"clear": 24,
"smoothing_min": 10
},
"temp_low": {
"measurand": "temp",
"operator": "<",
"raise": 18,
"clear": 20,
"smoothing_min": 10
},
"humidity_high": {
"measurand": "humidity",
"operator": ">",
"raise": 60,
"clear": 55,
"smoothing_min": 10
},
"humidity_low": {
"measurand": "humidity",
"operator": "<",
"raise": 30,
"clear": 35,
"smoothing_min": 10
}
},
"notifications": {
"default": {
"on_raise": true,
"on_clear": true,
"repeat": {
"enabled": true,
"mode": "escalating",
"intervals_min": [30, 15, 10, 5]
},
"agent_message": ""
},
"overrides": {}
},
"gateway": {
"webhook_url": "",
"token": ""
}
}