-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathconfig_example.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"_comments": "
1. create a config.json file with the url
2. enable gmail mail sending:
https://www.google.com/settings/security/lesssecureapps
3. ajust the schedule (in minutes)
",
"url": "http://examle.com/api/data.json",
"limits": {
"h10": {"min": 5.00, "max": 95.00},
"t1": {"min": 20.00, "max": 29.0},
"t2": {"min": -26.00, "max": -10.00},
"t3": {"min": 0.30, "max": 6.00},
"t4": {"min": 13.00, "max": 20.00},
"t10": {"min": 5.00, "max": 30.00}
},
"sensors": {
"h10": "HumCultivos",
"t1": "TempScaleUp",
"t2": "Congelador",
"t3": "Frigorifico",
"t4": "Fitoclima",
"t10": "TempCultivos"
},
"template": {
"ok": "All good.",
"error": "{}: {}\n"
},
"email": {
"subject": "The Subject",
"from": "email@gmail.com",
"password": "my-gmail-password",
"to": ["email2@example.com",
"email3@example.com"]
},
"schedule": 5
}