-
Notifications
You must be signed in to change notification settings - Fork 0
/
termostat.yaml
66 lines (59 loc) · 2.01 KB
/
termostat.yaml
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
esphome:
name: termostat
platform: ESP32
board: featheresp32
platformio_options:
board_build.f_cpu: 240000000L
<<: !include display.yaml
<<: !include common.yaml
<<: !include sensor.yaml
interval:
- interval: 5s
then:
- script.execute: check_mode
- interval: 1h
then:
- script.execute: clear_alerts
script:
- id: clear_alerts
then:
- lambda: |-
id(alert_sent) = false;
- id: check_mode
then:
- lambda: |-
// nevarno
if (id(tpec).get_temp_c() >= 90){
id(stanje) = 666;
id(pumpa).turn_off();
ESP_LOGI("termostat", "Prevroce");
}else{
// grej ce je pec dovolj topla
if (id(tpec).get_temp_c() > id(temperatura_pec)){
// ce je pec na realno bolj topla od bojlerja
if (id(tpec).get_temp_c() > id(tbojler).get_temp_c()){
// ce je bojler hladnejsi od nastavljene temperature - histereze
if (id(tbojler).get_temp_c() < id(temperatura_bojler) - id(histereza)){
id(pumpa).turn_on();
ESP_LOGI("termostat", "Vkljucujem crpalko, bojler hladnejsi od peci");
}
// od
// obmocje vrednosti histereze
// do
// ce je bojler toplejsi od nastavljene temperature + histereze
if (id(tbojler).get_temp_c() > id(temperatura_bojler) + id(histereza)){
id(stanje) = 3;
id(pumpa).turn_off();
ESP_LOGI("termostat", "Izklucujem crpalko, temperatura dosezena");
}
}else{
id(stanje) = 2;
id(pumpa).turn_off();
ESP_LOGI("termostat", "Izklucujem crpalko, pec hladnejsa od bojlerja");
}
}else{
id(stanje) = 1;
id(pumpa).turn_off();
ESP_LOGI("termostat", "Izklucujem crpalko, pec hladnejsa od nastavitve");
}
}