-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
50 lines (42 loc) · 1021 Bytes
/
config.toml
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
[temperature]
low_range_start = -20.0
low_range_end = 10.9 # Changed from 11.0
high_range_start = 14.1 # Changed from 14.0
high_range_end = 100.0
ideal_range_start = 11.0
ideal_range_end = 14.0
fridge_cooldown_duration = 300
[humidity]
low_range_start = 0.0
low_range_end = 59.9 # Changed from 60.0
high_range_start = 80.1 # Changed from 80.0
high_range_end = 100.0
ideal_range_start = 60.0
ideal_range_end = 80.0
humidifier_cooldown_duration = 300
humidifier_activation_duration = 1
dehumidifier_cooldown_duration = 60
[ventilation]
interval = 1800
duration = 60
[sqlite]
db_name = "atmosphere_db"
[relay_pins]
humidifier = 14
dehumidifier = 15
ventilator_or_heater = 18
fridge = 17
[webserver]
host = "0.0.0.0"
port = 8080
[sensor_read_cooldown]
duration = 45
[polling_interval]
duration = 60
#[email]
#smtp_server = "smtp.gmail.com"
#smtp_port = 587
#username = "[email protected]"
#password = "your_password"
#from_address = "Atmos System <[email protected]>"
#to_address = "[email protected]"