-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdew-point-ventilation.yaml
1269 lines (1175 loc) · 31.2 KB
/
dew-point-ventilation.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
################################################################################
#
# Project Settings
#
################################################################################
# Pinout: https://randomnerdtutorials.com/esp32-pinout-reference-gpios/
# Example Menu: https://www.ambientika.eu/cms/wp-content/uploads/Ambientika-Taupunktsteuerung.pdf
substitutions:
name: dew-point-ventilation
friendly_name: Taupunktlüftung
comment: Taupunktlüftung zur Steuerung von Abluftventilatoren.
area: Keller
version: 3.0.1
#
# GPIOs
#
PIN_DHT22_IN: GPIO16
PIN_DHT22_OUT: GPIO17
PIN_I2C_SDA: GPIO21
PIN_I2C_SCL: GPIO22
PIN_RELAIS: GPIO23
PIN_ROTARY_ENCODER_CLK: GPIO25
PIN_ROTARY_ENCODER_DT: GPIO26
PIN_ROTARY_ENCODER_SW: GPIO27
################################################################################
#
# General Settings
#
################################################################################
#
# https://esphome.io/components/esphome.html
#
esphome:
name: "${name}"
friendly_name: "${friendly_name}"
area: "${area}"
comment: "${comment}"
project:
name: "esphome.${name}"
version: "${version}"
on_update:
then:
- switch.turn_off: relais_id
on_boot:
priority: 800
then:
- if:
condition:
binary_sensor.is_off: backlight_id
then:
- binary_sensor.template.publish:
id: backlight_id
state: ON
- binary_sensor.template.publish:
id: backlight_id
state: OFF
- ds1307.read_time:
- switch.turn_off: relais_id
on_loop:
then:
- lambda: |-
// check indoor sensor for plausible values
if (isnan(id(indoor_humidity_id).state) || isnan(id(indoor_temperature_id).state)) {
id(indoor_sensor_error_id) = true;
} else {
id(indoor_sensor_error_id) = false;
}
// check indoor sensor for plausible values
if (isnan(id(outdoor_humidity_id).state) || isnan(id(outdoor_temperature_id).state)) {
id(outdoor_sensor_error_id) = true;
} else {
id(outdoor_sensor_error_id) = false;
}
on_shutdown:
priority: 700
then:
- switch.turn_off: relais_id
#
# https://esphome.io/components/esp32.html
#
esp32:
board: esp32dev
framework:
type: arduino
#
# https://esphome.io/components/wifi.html
#
wifi:
id: wifi_id
ssid: !secret wifi_ssid
password: !secret wifi_password
domain: .local
fast_connect: True
power_save_mode: NONE
enable_on_boot: True
ap:
ssid: "${name}"
password: !secret wifi_ap_password
#
# https://esphome.io/components/captive_portal.html
#
captive_portal:
#
# https://esphome.io/components/ota/esphome.html
#
ota:
- platform: esphome
password: !secret ota_password
on_state_change:
then:
- lambda: |-
id(ota_state_id) = state;
id(page_id) = 100;
- component.update: display_id
on_progress:
then:
- lambda: |-
id(ota_progress_id) = x;
id(display_id)->update();
id(page_id) = 100;
on_error:
then:
- switch.turn_off: relais_id
- lambda: |-
id(ota_state_id) = ota::OTA_ERROR;
id(ota_error_id) = x;
id(page_id) = 100;
- component.update: display_id
#
# https://esphome.io/components/api
#
api:
# Enable transport encryption of the API layer.
encryption:
# The pre-shared key for the encryption.
key: !secret api_encryption_key
reboot_timeout: 0s
#
# https://esphome.io/components/mqtt.html
#
mqtt:
broker: !secret mqtt_broker
username: !secret mqtt_username
password: !secret mqtt_password
reboot_timeout: 0s
#
# https://esphome.io/components/web_server
#
web_server:
port: 80
version: 3
local: True
ota: True
#
# https://esphome.io/components/time
#
time:
- platform: ds1307
id: ds1307_time
address: 0x68
# repeated synchronization is not necessary unless the external RTC
# is much more accurate than the internal clock
update_interval: never
- platform: homeassistant
id: homeassistant_time
# instead try to synchronize via network repeatedly ...
on_time_sync:
then:
# ... and update the RTC when the synchronization was successful
ds1307.write_time:
id: ds1307_time
- platform: sntp
id: sntp_time
timezone: Europe/Berlin
servers:
- 0.pool.ntp.org
- 1.pool.ntp.org
- 2.pool.ntp.org
# instead try to synchronize via network repeatedly ...
on_time_sync:
then:
# ... and update the RTC when the synchronization was successful
ds1307.write_time:
id: ds1307_time
#
# https://esphome.io/components/logger.html
#
logger:
level: ERROR
################################################################################
#
# Specific Settings
#
################################################################################
#
# https://esphome.io/components/globals.html
#
globals:
- id: page_id
type: int
initial_value: '0'
- id: ota_state_id
type: int
restore_value: no
initial_value: '-1'
- id: ota_progress_id
type: float
restore_value: no
initial_value: '0'
- id: ota_error_id
type: int
restore_value: no
initial_value: '0'
- id: indoor_sensor_error_id
type: bool
restore_value: no
initial_value: 'false'
- id: outdoor_sensor_error_id
type: bool
restore_value: no
initial_value: 'false'
#
# https://esphome.io/components/i2c.html
#
i2c:
id: i2c_id
sda: ${PIN_I2C_SDA}
scl: ${PIN_I2C_SCL}
frequency: 100kHz
scan: False
################################################################################
#
# Numbers
#
################################################################################
#
# https://esphome.io/components/number/index.html
#
number:
#
# Minimum dew point difference
#
- platform: template
name: Minimum dew point difference
id: dew_point_difference_min_id
min_value: 1.0
max_value: 9.0
initial_value: 5.0
restore_value: True
optimistic: True
step: 0.5
#
# Hysteresis
#
- platform: template
name: Hysteresis
id: hysteresis_id
min_value: 0.0
max_value: 5.0
initial_value: 1.0
restore_value: True
optimistic: True
step: 0.5
#
# Indoor temperature minimum
#
- platform: template
name: Indoor temperature minimum
id: indoor_temperature_min_id
min_value: 5.0
max_value: 25.0
initial_value: 8.0
restore_value: True
optimistic: True
step: 1.0
#
# Outdoor temperature minimum
#
- platform: template
name: Outdoor temperature minimum
id: outdoor_temperature_min_id
min_value: -30.0
max_value: 20.0
initial_value: 5.0
restore_value: True
optimistic: True
step: 1.0
#
# Backlight delay
#
- platform: template
name: Backlight delay
id: backlight_delay_id
min_value: 3.0
max_value: 180.0
initial_value: 10.0
restore_value: True
optimistic: True
internal: True
step: 1.0
#
# Day
#
# Helper for setting Datetime
#
- platform: template
name: Day
id: datetime_day_id
min_value: 1
max_value: 31
initial_value: 1
optimistic: True
internal: True
step: 1.0
#
# Month
#
# Helper for setting Datetime
#
- platform: template
name: Month
id: datetime_month_id
min_value: 1
max_value: 12
initial_value: 1
optimistic: True
internal: True
step: 1.0
#
# Year
#
# Helper for setting Datetime
#
- platform: template
name: Year
id: datetime_year_id
min_value: 2024
max_value: 2100
initial_value: 2024
optimistic: True
internal: True
step: 1.0
#
# Hour
#
# Helper for setting Datetime
#
- platform: template
name: Hour
id: datetime_hour_id
min_value: 0
max_value: 23
initial_value: 12
optimistic: True
internal: True
step: 1.0
#
# Minute
#
# Helper for setting Datetime
#
- platform: template
name: Minute
id: datetime_minute_id
min_value: 0
max_value: 59
initial_value: 0
optimistic: True
internal: True
step: 1.0
#
# Second
#
# Helper for setting Datetime
#
- platform: template
name: Second
id: datetime_second_id
min_value: 0
max_value: 59
initial_value: 0
optimistic: True
internal: True
step: 1.0
################################################################################
#
# Text Sensors
#
################################################################################
#
# https://esphome.io/components/text_sensor/index.html
#
text_sensor:
#
# Version
# https://esphome.io/components/text_sensor/version.html
#
- platform: version
name: ESPHome Version
#
# WiFi Information
# https://esphome.io/components/text_sensor/wifi_info.html
#
- platform: wifi_info
ssid:
name: SSID
bssid:
name: BSSID
ip_address:
name: IP Address
dns_address:
name: DNS Address
mac_address:
name: MAC Address
################################################################################
#
# Binary Sensors
#
################################################################################
#
# https://esphome.io/components/binary_sensor/index.html
#
binary_sensor:
#
# Rotary Encoder Button
# https://esphome.io/components/binary_sensor/gpio.html
#
- platform: gpio
pin: ${PIN_ROTARY_ENCODER_SW}
name: Menu
internal: True
filters:
- delayed_on: 15ms
- delayed_off: 15ms
on_press:
then:
- if:
condition:
binary_sensor.is_off: backlight_id
then:
- binary_sensor.template.publish:
id: backlight_id
state: ON
- binary_sensor.template.publish:
id: backlight_id
state: OFF
else:
- if:
condition:
display_menu.is_active:
then:
- display_menu.enter:
else:
- display_menu.show:
#
# Backlight
# https://esphome.io/components/binary_sensor/template.html
#
- platform: template
id: backlight_id
internal: True
filters:
- delayed_off: !lambda |-
return id(backlight_delay_id).state * 1000;
on_press:
then:
- lambda: |-
id(display_id).backlight();
on_release:
then:
- lambda: |-
if (!id(lcd_menu_id).is_active()) {
id(display_id).no_backlight();
}
################################################################################
#
# Selects
#
################################################################################
#
# https://esphome.io/components/select/index.html
#
select:
#
# Mode
# https://esphome.io/components/select/template.html
#
- platform: template
name: Mode
id: mode_id
icon: mdi:light-switch
options:
- "Automatic"
- "On"
- "Off"
initial_option: "Automatic"
optimistic: True
restore_value: False
on_value:
then:
- lambda: |-
if (id(mode_id).state == "Automatic") {
// only switch
if (id(indoor_sensor_error_id) != true || id(outdoor_sensor_error_id) != true) {
// Taupunkt außen < Taupunkt innen -> Lüfter an
if (id(outdoor_dew_point_id).state < id(indoor_dew_point_id).state) {
id(relais_id).turn_on();
}
// Taupunkt außen < Taupunkt innen -> Lüfter aus
else if (id(outdoor_dew_point_id).state < id(indoor_dew_point_id).state)
{
id(relais_id).turn_off();
}
/*
// Taupunkt außen < Taupunkt innen
// id(outdoor_dew_point_id).state > id(indoor_dew_point_id).state
if (id(delta_dew_point_id).state > (id(dew_point_difference_min_id).state + id(hysteresis_id).state))
{
id(relais_id).turn_on();
}
// Taupunkt außen < Taupunkt innen
// id(outdoor_dew_point_id).state < id(indoor_dew_point_id).state
else if (id(delta_dew_point_id).state < id(dew_point_difference_min_id).state)
{
id(relais_id).turn_off();
}
else if (id(indoor_temperature_id).state < id(indoor_temperature_min_id).state)
{
id(relais_id).turn_off();
}
else if (id(outdoor_temperature_id).state < id(outdoor_temperature_min_id).state)
{
id(relais_id).turn_off();
}
*/
}
} else if (id(mode_id).state == "On") {
id(relais_id).turn_on();
} else if (id(mode_id).state == "Off") {
id(relais_id).turn_off();
}
################################################################################
#
# Buttons
#
################################################################################
#
# https://esphome.io/components/button/index.html
#
button:
#
# Restart
# https://esphome.io/components/button/restart.html
#
- platform: restart
id: restart_id
name: Restart
icon: mdi:reload
#
# Factory Reset
# https://esphome.io/components/button/factory_reset.html
#
- platform: factory_reset
id: factoryreset_id
name: Factory Reset
icon: mdi:restart
#
# Save Mode
# https://esphome.io/components/button/safe_mode.html
#
- platform: safe_mode
id: safemode_id
name: Restart (Safe Mode)
icon: mdi:reload
################################################################################
#
# Sensors
#
################################################################################
#
# https://esphome.io/components/sensor/index.html
#
sensor:
#
# Uptime
# https://esphome.io/components/sensor/uptime.html
#
- platform: uptime
type: seconds
name: Uptime
#
# WiFi Signal in dB
# https://esphome.io/components/sensor/wifi_signal.html
#
- platform: wifi_signal
id: wifi_signal_db
name: WiFi Signal dB
update_interval: 60s
#
# WiFi Signal in %
# https://esphome.io/components/sensor/wifi_signal.html
#
- platform: copy
id: wifi_signal_percent
source_id: wifi_signal_db
name: WiFi Signal %
filters:
- lambda: return min(max(2 * (x + 100.0), 0.0), 100.0);
unit_of_measurement: "%"
entity_category: "diagnostic"
device_class: ""
#
# Rotary Encoder
# https://esphome.io/components/sensor/rotary_encoder.html
#
- platform: rotary_encoder
id: rotary_encoder_id
name: Rotary Encoder
internal: True
pin_a: ${PIN_ROTARY_ENCODER_CLK}
pin_b: ${PIN_ROTARY_ENCODER_DT}
restore_mode: ALWAYS_ZERO
filters:
debounce: 30ms
on_anticlockwise:
- if:
condition:
display_menu.is_active:
then:
- display_menu.up:
else:
- if:
condition:
binary_sensor.is_off: backlight_id
then:
- binary_sensor.template.publish:
id: backlight_id
state: ON
- binary_sensor.template.publish:
id: backlight_id
state: OFF
else:
- globals.set:
id: page_id
value: !lambda |-
return id(page_id) -= 1;
- if:
condition:
lambda: |-
return id(page_id) <= 0;
then:
- globals.set:
id: page_id
value: !lambda |-
return 0;
# - lambda: |-
# id(page_id) = (id(page_id) - 1);
# if (id(page_id) <= 0) {
# id(page_id) = 0;
# }
on_clockwise:
- if:
condition:
display_menu.is_active:
then:
- display_menu.down:
else:
- if:
condition:
binary_sensor.is_off: backlight_id
then:
- binary_sensor.template.publish:
id: backlight_id
state: ON
- binary_sensor.template.publish:
id: backlight_id
state: OFF
else:
- globals.set:
id: page_id
value: !lambda |-
return id(page_id) += 1;
- if:
condition:
lambda: |-
return id(page_id) >= 2;
then:
- globals.set:
id: page_id
value: !lambda |-
return 2;
# - lambda: |-
# id(page_id) = (id(page_id) + 1);
# if (id(page_id) >= 2) {
# id(page_id) = 2;
# }
#
# Delty Dew Point
# https://esphome.io/components/sensor/template.html
#
- platform: template
name: Delta Dew Point
id: delta_dew_point_id
device_class: temperature
unit_of_measurement: °C
icon: mdi:thermometer-alert
accuracy_decimals: 1
update_interval: 5s
lambda: |-
return id(indoor_dew_point_id).state - id(outdoor_dew_point_id).state;
#
# Absolute Delta Dew Point
# https://esphome.io/components/sensor/template.html
#
- platform: template
name: Absolute Delta Dew Point
id: absolute_delta_dew_point_id
device_class: temperature
unit_of_measurement: g/m³
icon: mdi:water-percent-alert
accuracy_decimals: 1
update_interval: 5s
lambda: |-
return id(indoor_absolute_dew_point_id).state - id(outdoor_absolute_dew_point_id).state;
#
# Outdoor Temperature
# https://esphome.io/components/sensor/dht.html
#
- platform: dht
pin: ${PIN_DHT22_OUT}
model: DHT22
temperature:
name: Outdoor Temperature
id: outdoor_temperature_id
accuracy_decimals: 1
filters:
- offset: 0.0
humidity:
name: Outdoor Humidity
id: outdoor_humidity_id
accuracy_decimals: 1
filters:
- offset: 0.0
update_interval: 5s
#
# Outdoor Dew Point
# https://esphome.io/components/sensor/template.html
#
- platform: template
name: Outdoor Dew Point
id: outdoor_dew_point_id
device_class: temperature
unit_of_measurement: °C
icon: mdi:thermometer-alert
accuracy_decimals: 1
update_interval: 5s
lambda: |-
return (243.5 * (log(id(outdoor_humidity_id).state / 100) + ((17.67 * id(outdoor_temperature_id).state) / (243.5 + id(outdoor_temperature_id).state))) / (17.67 - log(id(outdoor_humidity_id).state / 100) - ((17.67 * id(outdoor_temperature_id).state) / (243.5 + id(outdoor_temperature_id).state))));
#
# Outdoor Absolute Humidity
# https://esphome.io/components/sensor/absolute_humidity.html
#
- platform: absolute_humidity
name: Outdoor Absolute Humidity
id: outdoor_absolute_dew_point_id
icon: mdi:water-percent-alert
temperature: outdoor_temperature_id
humidity: outdoor_humidity_id
unit_of_measurement: g/m³
accuracy_decimals: 1
#
# Indoor Temperature
# https://esphome.io/components/sensor/dht.html
#
- platform: dht
pin: ${PIN_DHT22_IN}
model: DHT22
temperature:
name: Indoor Temperature
id: indoor_temperature_id
accuracy_decimals: 1
filters:
- offset: 0.0
humidity:
name: Indoor Humidity
id: indoor_humidity_id
accuracy_decimals: 1
filters:
- offset: 0.0
update_interval: 5s
#
# Indoor Dew Point
# https://esphome.io/components/sensor/template.html
#
- platform: template
name: Indoor Dew Point
id: indoor_dew_point_id
device_class: temperature
unit_of_measurement: °C
icon: mdi:thermometer-alert
accuracy_decimals: 1
update_interval: 5s
lambda: |-
return (243.5 * (log(id(indoor_humidity_id).state / 100) + ((17.67 * id(indoor_temperature_id).state) / (243.5 + id(indoor_temperature_id).state))) / (17.67 - log(id(indoor_humidity_id).state / 100) - ((17.67 * id(indoor_temperature_id).state) / (243.5 + id(indoor_temperature_id).state))));
#
# Indoor Absolute Humidity
# https://esphome.io/components/sensor/absolute_humidity.html
#
- platform: absolute_humidity
name: Indoor Absolute Humidity
id: indoor_absolute_dew_point_id
icon: mdi:water-percent-alert
temperature: indoor_temperature_id
humidity: indoor_humidity_id
unit_of_measurement: g/m³
accuracy_decimals: 1
################################################################################
#
# Switches
#
################################################################################
#
# https://esphome.io/components/switch/index.html
#
switch:
#
# Relais
# https://esphome.io/components/switch/gpio.html
#
- platform: gpio
id: relais_id
name: Fan
icon: mdi:fan
pin: ${PIN_RELAIS}
internal: True
#
# WiFi
# https://esphome.io/components/switch/template.html
#
- platform: template
id: wifi_state_id
name: "WiFi"
icon: "mdi:wifi"
internal: False
optimistic: True
#restore_mode: True
assumed_state: True
lambda: |-
if (!id(wifi_id).is_disabled()) {
return true;
} else {
return false;
}
turn_on_action:
then:
- wifi.enable:
turn_off_action:
then:
- wifi.disable:
################################################################################
#
# LCD
#
################################################################################
#
# https://esphome.io/components/display_menu/lcd_menu.html
#
lcd_menu:
id: lcd_menu_id
display_id: display_id
active: False
mode: rotary
mark_back: 0x08
mark_selected: 0x3e
mark_editing: 0x2a
mark_submenu: 0x7e
items:
#
# Mode
#
- type: select
text: 'Mode'
immediate_edit: False
select: mode_id
#
# Settings
#
- type: menu
text: 'Settings'
items:
- type: back
text: 'Back'
- type: number
text: 'Dew point diff. min.'
immediate_edit: False
number: dew_point_difference_min_id
- type: number
text: 'Hysteresis'
immediate_edit: False
number: hysteresis_id
- type: number
text: 'Indoor temp. min.'
immediate_edit: False
number: indoor_temperature_min_id
- type: number
text: 'Outdoor temp. min.'
immediate_edit: False
number: outdoor_temperature_min_id
- type: back
text: 'Back'
#
# System
#
- type: menu
text: 'System'
items:
- type: back
text: 'Back'
# - type: menu