forked from panhans/HomeAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heating_control.yaml
2577 lines (2064 loc) · 98.6 KB
/
heating_control.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
blueprint:
name: 🔥 Advanced Heating Control
author: panhans
homeassistant:
min_version: "2024.2.0"
description: "
🔥 heating / ❄ based on
> 👥 people presence
🗓️ multiple schedulers
🚶 presence sensor
↔️ proximity aka geo fencing
🥶 frost protection
😡 adjustable aggressive mode
🌤️ activation based on weather, temperature or boolean entities
🎛️ granular schedule adjustments
🪟 multiple window open detection
🎈 party mode
🤝 guest mode
🧭 thermostat calibration for the most common devices (Tado, Aqara, Popp / Danfoss / Hive, Tuya)
⚙️ several tweaks for fixing your thermostat issues
🎬 custom action
🤫 calm & 💪 reliable
**Version**: 4.2.8
**Help & FAQ**: [Advanced Heating Control](https://community.home-assistant.io/t/advanced-heating-control)
**Documentation:** work in progress
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/Q5Q3QEH52)
"
source_url: https://github.com/panhans/HomeAssistant/blob/main/blueprints/automation/panhans/heating_control.yaml
domain: automation
input:
input_trvs:
name: 🔥 Thermostats / Climates
description: >
`thermostats` `climates`
[Thermostats / Climates](https://www.home-assistant.io/integrations/climate/) to be controlled.
selector:
entity:
filter:
- domain:
- climate
multiple: true
input_hvac_mode:
name: 🎛️ Operation / HVAC Mode
description: >
`hvac`
Select the hvac mode for your [thermostats](https://www.home-assistant.io/integrations/climate/). Be sure your selected thermostats support the hvac mode you've chosen.
AHC will log a warning if there is a miss match. For radiator [thermostats]((https://www.home-assistant.io/integrations/climate/)) the default is mostly *heat*.
If you own an air conditioner it will support *auto* or *cool*, too.
default: 'heat'
selector:
select:
options:
- heat
- cool
- auto
- heat_cool
input_temperature_minimum_static:
name: 🌱 Static Eco Temperature
description: >
`eco temperature`
The temperature that is set when your heating schedule is not active.
default: 19
selector:
number:
min: 4.0
max: 75.0
step: 0.5
mode: box
unit_of_measurement: °C / °F
input_temperature_minimum:
name: 🌱 Eco Temperature
description: >
`eco temperature` `optional`
To control your eco temperature via automations or the UI, you can specify an *[input_number](https://www.home-assistant.io/integrations/input_number/)* entity here.
Create your helper [here](https://my.home-assistant.io/redirect/helpers/).
default:
selector:
entity:
filter:
- domain:
- input_number
multiple: false
# C O M F O R T & M O D S
input_temperature_comfort_static:
name: 🛋️ Static Comfort Temperature
description: >
`comfort temperature`
You can set a static comfort temperature here.
default: 22
selector:
number:
min: 12.0
max: 86.0
step: 0.5
mode: box
unit_of_measurement: °C / °F
input_temperature_comfort:
name: 🛋️ Comfort Temperature
description: >
`comfort temperature` `optional`
To control your comfort temperature via automations or the UI, you can specify an *[input_number](https://www.home-assistant.io/integrations/input_number/)* entity here.
Create your helper [here](https://my.home-assistant.io/redirect/helpers/).
default:
selector:
entity:
filter:
- domain:
- input_number
multiple: false
input_time_based_temperature_change_valve_target:
name: 🎛️ Heating Schedule Adjustments
description: >
`optional`
Here you can setup some adjustments to your heating schedule. What's possible until now?
<br/>
> 🕔 **time**
> Timestamp when the adjustment should kick in. (required)
> 📆 **days**
> Select days where this setting shall be enabled.
> ['Mon','Tue','Wed','Thu','Fri','Sat','Sun']
> 🗓️ **scheduler**
> Only enable this entry if this string is part of the name of your active scheduler.
> 🛋️ **comfort**
> Adjust comfort temperature
> 🌱 **eco**
> Adjust eco temperature
> 🧭 **calibration**
> Toggle calibration
> on/off
Example:
<br/>
```yaml
- time: "08:00"
comfort: "20"
calibration: "off"
- time: "16:00"
eco: "19"
calibration: "on"
- time: "20:00"
days: ['Sat','Sun']
scheduler: 'Holidays'
comfort: "24"
eco: "17"
```
selector:
object:
default: "[]"
# P E R S O N S
input_persons:
name: 👥 People
description: >
`people` `optional`
You can specify [people](https://www.home-assistant.io/integrations/person/) to make your heating plan more dynamic. If you do not use [schedulers](https://www.home-assistant.io/integrations/schedule/) or presence sensors, heating is activated as soon as someone is at home.<br/>
With [schedulers](https://www.home-assistant.io/integrations/schedule/) or presence sensors, these are only active when someone is at home.
default: []
selector:
entity:
filter:
- domain:
- person
multiple: true
input_people_entering_home_duration:
name: 🏠 Enter Home Duration
description: >
`people`
Duration for which someone must be at home for heating to be activated.
default:
hours: 0
minutes: 0
seconds: 2
selector:
duration:
input_people_leaving_home_duration:
name: 💨 Leaving Home Duration
description: >
`people`
Duration for which someone must be out of the house for heating to be deactivated.
default:
hours: 0
minutes: 0
seconds: 2
selector:
duration:
# P R O X I M I T Y
input_proximity:
name: ↔️ Proximity
description: >
`proximity` `optional`
You can preheat your rooms with help of home assistant's [proximity integration](https://www.home-assistant.io/integrations/proximity/).<br/>
Just select your proxmity zone and take your adjustments to distance and duration.<br/>
If you're in range of your distance and towards to your home heating kicks in. If you don't specify any scheduler or presence detector heating also is enabled if you arrived.<br/>
**Note**: If *on way home* is detected this gets handled like presence is on or somebody is home. So this has to match with the states of your schedulers if you use them.
default: ""
selector:
device:
filter:
integration: proximity
multiple: false
input_proximity_duration:
name: ⏰ Proximity Duration
description: >
`proximity`
Duration for which someone must be on way home before heating occurs.
default:
hours: 0
minutes: 2
seconds: 0
selector:
duration:
input_proximity_distance:
name: ↔️ Proximity Distance
description: >
`proximity`
The distance when proximity sensor gets impact for this automation. Hint: Unit depends on the setup of your integration.
default: 500
selector:
number:
min: 0
max: 999999999
step: 1
mode: box
# S C H E D U L E R
input_schedulers:
name: ⏲️ Scheduler
description: >
`scheduler` `optional`
A [scheduler](https://www.home-assistant.io/integrations/schedule/) specifies when heating to comfort temperature should take place. You can create it in the helper section of Home Assistant.<br/>
If you have also specified [people](https://www.home-assistant.io/integrations/person/), someone must also be at home for heating.<br/>
You can create as many [schedulers](https://www.home-assistant.io/integrations/schedule/) as you like. Make sure the names are clear.
Create your scheduler [here](https://my.home-assistant.io/redirect/helpers/).
default: []
selector:
entity:
filter:
- domain:
- schedule
multiple: true
input_scheduler_selector:
name: ☝🏻 Scheduler Selector
description: >
`scheduler` `optional`
Define an entity to choose from your schedulers. If you use one scheduler only you can ignore this. If you use more than one scheduler you have multiple possibilities to setup your selection: <br/>
* toggle [input_boolean](https://www.home-assistant.io/integrations/input_boolean/) or [binary_sensor](https://www.home-assistant.io/integrations/binary_sensor/): If *off* the first defined [scheduler](https://www.home-assistant.io/integrations/schedule/) is active. If *on* the second [scheduler](https://www.home-assistant.io/integrations/schedule/) is active. More than two [schedulers](https://www.home-assistant.io/integrations/schedule/) cannot be selected with binary inputs.
* text [input text](https://www.home-assistant.io/integrations/input_text/), drop down [input text](https://www.home-assistant.io/integrations/input_select/) or [sensor](https://www.home-assistant.io/integrations/sensor/):
* The value has to match the friendly name of the selected [scheduler](https://www.home-assistant.io/integrations/schedule/) at least partially. Example: If you provide three [schedulers](https://www.home-assistant.io/integrations/schedule/) called *work*, *holiday/sick*, *guest* you can select the holiday [scheduler](https://www.home-assistant.io/integrations/schedule/) while setting the selection entity to *sick*, *holiday* or *holiday/sick*. This option is case insensitive.
* You also can go with numbers: if you want to choose the first [scheduler](https://www.home-assistant.io/integrations/schedule/) the selector entity must return the number *1*. For the 2nd number *2* and so on.
Create your helper [here](https://my.home-assistant.io/redirect/helpers/).
default:
selector:
entity:
filter:
- domain:
- input_boolean
- binary_sensor
- input_text
- input_number
- input_select
multiple: false
# P R E S E N C E
input_presence_sensor:
name: 🚶 Presence Sensor / On/Off-Entity
description: >
`presence detection` `optional`
If you specify a presence sensor, heating will take place if it detects presence.<br/>
If you have specified [people](https://www.home-assistant.io/integrations/person/), at least one must also be at home. You also can select an [Input Boolean](https://www.home-assistant.io/integrations/input_boolean/) entity to realise a simple On/Off-Logic.
default:
selector:
entity:
filter:
- domain:
- binary_sensor
- input_boolean
multiple: false
input_scheduler_presence:
name: ⏲️ Presence Sensor Scheduler
description: >
`presence detection` `optional`
The presence [scheduler](https://www.home-assistant.io/integrations/schedule/) specifies exactly when the presence sensor should be used during the day.
default:
selector:
entity:
filter:
- domain:
- schedule
multiple: false
input_presence_reaction_on_time:
name: ⏳ Presence Reaction On Time
description: >
`presence detection`
Specify the duration for which the presence sensor must detect any presence so that the comfort temperature is set.
default:
hours: 0
minutes: 5
seconds: 0
selector:
duration:
input_presence_reaction_off_time:
name: ⌛ Presence Reaction Off Time
description: >
`presence detection`
Specify the duration for which the presence sensor must not detect any presence so that the minimum temperature is set.
default:
hours: 0
minutes: 5
seconds: 0
selector:
duration:
# A W A Y O F F S E T
input_away_offset:
name: 🏃 Away Temperature
description: >
`scheduler` `persons` `presence` `away mode`
First: This feature only works for [schedule](https://www.home-assistant.io/integrations/schedule/) and/or presence based heating combined with [people/persons](https://www.home-assistant.io/integrations/person/). You can define an offset for your comfort temperature that will be subtracted (heating) from or added (cooling) to your comfort temperature.
If you enable this option for [scheduling](https://www.home-assistant.io/integrations/schedule/) the away offset will be set if your scheduler is *on* but nobody is at home.
For presence detection the offset will be set if you are at home but no presence is detected.
default: 0
selector:
number:
min: 0
max: 10
step: 0.5
mode: slider
unit_of_measurement: °C / °F
input_away_options:
name: ⚙️ Away Mode
description: "
`scheduler` `persons` `presence` `away mode`
> ### ⏲️ Scheduler Away Mode
> Enable/Disable the Away Offset for [scheduled](https://www.home-assistant.io/integrations/schedule/) based heating/cooling
> ### 🚶 Presence Away Mode
> Enable/Disable the Away Offset for presence based heating/cooling
**NOTE:** Don't set temperature by your [climate](https://www.home-assistant.io/integrations/climate/) entities when using generic calibration but by your eco / comfort entities only in order to prevent unwanted side effect. (caused by a home assistant [bug](https://github.com/home-assistant/core/issues/99914))
"
default: []
selector:
select:
options:
- label: "⏲️ Scheduler Away Mode"
value: scheduler
- label: "🚶 Presence Away Mode"
value: presence
multiple: true
custom_value: false
mode: list
# M O D E S
input_mode_party:
name: 🎈 Party mode
description: >
`optional`
If on, all settings are ignored and heating takes place. You can define multiple [timers](https://www.home-assistant.io/integrations/timer/) or boolean entities.
If you put a number at the end of the friendly name like *Party Timer 20* this number will be taken as the desired comfort temperature for this [timer](https://www.home-assistant.io/integrations/timer/).
Create your timer [here](https://my.home-assistant.io/redirect/helpers/).
default: []
selector:
entity:
filter:
- domain:
- input_boolean
- binary_sensor
- timer
multiple: true
input_mode_guest:
name: 🤝 Guest mode
description: >
`optional`
If an entity is specified here, it is treated like a [person](https://www.home-assistant.io/integrations/person/). It's usefull when you're leaving your guests alone in your home and you are not using presence detection.
* entity defined -> [person](https://www.home-assistant.io/integrations/person/) defined
* enitity is *on* -> simulates [person](https://www.home-assistant.io/integrations/person/) is home
* enitity is *off* -> simulates [person](https://www.home-assistant.io/integrations/person/) is away
Create your helper [here](https://my.home-assistant.io/redirect/helpers/).
default:
selector:
entity:
filter:
- domain:
- input_boolean
- binary_sensor
- timer
multiple: false
# W I N D O W O P E N D E T E C T I O N
input_windows:
name: 🪟 Windows & Doors
description: >
`airing` `optional`
If open during airing your [thermostats](https://www.home-assistant.io/integrations/climate/) will be set to *off* at least to their minimum temperature if they don't support hvac mode *OFF*.
default: []
selector:
entity:
filter:
- domain:
- binary_sensor
multiple: true
input_windows_reaction_time_open:
name: ⏳ Window & Door Reaction Time Open
description: >
`airing`
Duration for which a window or door must be open for the [thermostats](https://www.home-assistant.io/integrations/climate/) to close.
default:
hours: 0
minutes: 0
seconds: 30
selector:
duration:
input_windows_reaction_time_close:
name: ⌛ Window & Door Reaction Time Close
description: >
`airing`
Duration for which a window or door must be closed for the [thermostats](https://www.home-assistant.io/integrations/climate/) to open.
default:
hours: 0
minutes: 0
seconds: 30
selector:
duration:
# F R O S T P R O T E C T I O N
input_frost_protection_temp:
name: ❄️ Frost Protection Temperature
description: >
`frost protection`
You can set the frost protection temperature here.
default: 5
selector:
number:
min: 5.0
max: 62.0
step: 0.5
mode: box
unit_of_measurement: °C / °F
input_frost_protection_duration:
name: ❄️ Frost Protection Fallback Duration
description: >
`frost protection`
If the defined [persons](https://www.home-assistant.io/integrations/person/) are not at home for a longer period of time or the presence sensor has no longer detected any presence, the frost protection temperature can be lowered after a this duration.
Note: If set to zero frost protection temperature never will be set.
default:
days: 0
hours: 0
minutes: 0
seconds: 0
selector:
duration:
enable_day: true
# C A L I B R A T I O N
input_temperature_sensor:
name: 🌡️ Calibration Temperature Sensor
description: >
`calibration` `optional`
Temperature calibration for your [thermostats](https://www.home-assistant.io/integrations/climate/). The following is supported:
* Tado, Aqara, Popp, Danfoss, Hive, Tuya
* generic calibration
Note: This is an additional sensor inside your room usually next to your favourite spot. [Thermostats](https://www.home-assistant.io/integrations/climate/) or its integration (e.g. Z2M or ZHA) except Tado should provide a seperate clibration enitity.
default:
selector:
entity:
filter:
- domain:
- sensor
device_class:
- temperature
multiple: false
input_calibration_timeout:
name: ⏳ Calibration Timeout
description: >
`calibration`
Define a timeout if you want to decrease the amount of calibration calls if temperature changes too much.
At least the temperature of the external sensor or [thermostat](https://www.home-assistant.io/integrations/climate/) must stay for that duration before calibration gets triggered.
**HINT:** A minimum timeout of 2s is recommended.
default:
hours: 0
minutes: 1
seconds: 0
selector:
duration:
input_calibration_delta:
name: ↔️ Calibration Delta
description: >
`calibration`
If the difference between the [thermostat](https://www.home-assistant.io/integrations/climate/) temperature and the external sensor temperature is greater or less than the calibration delta the [thermostat](https://www.home-assistant.io/integrations/climate/) calibration will be triggered.<br/>
The lower the delta the often calibration gets triggered.
default: 0.5
selector:
number:
min: 0
max: 5
step: 0.1
mode: slider
unit_of_measurement: °C / °F
input_calibration_options:
name: ⚙️ Calibration Tweaks
description: "
`calibration`
> ### 🧭 Generic Calibration
> Adds the difference between room and [thermostat](https://www.home-assistant.io/integrations/climate/) temperature to the target temperature.
> ### 🌕 Fully Rounded Values
> Enable this if you [thermostat](https://www.home-assistant.io/integrations/climate/) calibration entity accept floating values but only save them as integers.
**NOTE:** Don't set temperature by your [climate](https://www.home-assistant.io/integrations/climate/) entities when using generic calibration but by your eco / comfort entities only in order to prevent unwanted side effect. (caused by a home assistant [bug](https://github.com/home-assistant/core/issues/99914))
"
default: []
selector:
select:
options:
- label: "🧭 Generic Calibration"
value: generic_calibration
- label: "🌕 Fully Rounded Values"
value: rounded_values
multiple: true
custom_value: false
mode: list
# W I N T E R M O D E
input_mode_winter:
name: ⛄ Winter Mode / Automation Toggle
description: >
`activation` `optional`
If *on* the automation is active. If *off* your valves will set to *off* and the automation is going to sleep.
You can set this up with:
* [input boolean](https://www.home-assistant.io/integrations/input_boolean/)
* [binary sensor](https://www.home-assistant.io/integrations/binary_sensor/)
Create your helper [here](https://my.home-assistant.io/redirect/helpers/).
default:
selector:
entity:
filter:
- domain:
- input_boolean
- binary_sensor
multiple: false
input_mode_outside_temperature:
name: 🌤️ Outside Temperature Sensor
description: >
`activation` `optional`
You can control the switching on and off of your thermostats via the outside temperature.
To do this, select a temperature sensor or a weather entity and adjust the threshold below.
* [weather entity](https://www.home-assistant.io/integrations/weather/)
* [temperature sensor entity](https://www.home-assistant.io/integrations/sensor/
default:
selector:
entity:
filter:
- domain:
- weather
- domain:
- sensor
device_class: temperature
multiple: false
input_mode_outside_temperature_threshold:
name: 🎚️ Outside Temperature Threshold
description: >
`activation`
If you'd select a temperature [sensor](https://www.home-assistant.io/integrations/sensor/) or a [weather entity](https://www.home-assistant.io/integrations/weather/) for controlling heating you can adjust the temperature threshold here.
If the outside temperature falls below the threshold value, heating is activated.
default: 15
selector:
number:
min: 5
max: 68
step: 1
mode: box
unit_of_measurement: °C / °F
# M O D I F I E R S
input_aggressive_mode_range:
name: 😡 Agressive Mode - Range
description: >
`aggressive mode` `tweak`
Activate this option if your [thermostats](https://www.home-assistant.io/integrations/climate/) react slowly or only start to react at a large temperature difference between actual and set temperature.
Define a range when your real target temperature shall be set. E.g. you target temperature is 20°C and your room temperature is 19.5°C.
If your range is set to 0.5°C the real target temperature (20°C) will be set when room temperature is between 19.5°C and 20.5°C.
If the room temperature is above or lower that range it gets some offset in order to force your [thermostat](https://www.home-assistant.io/integrations/climate/) to react. (see Aggressive Mode - Offset)
**NOTE:** Don't set temperature by your [cliamte](https://www.home-assistant.io/integrations/climate/) entities when using aggressive mode but by your eco / comfort entities only in order to prevent unwanted side effect. (caused by a home assistant [bug](https://github.com/home-assistant/core/issues/99914))
default: 0
selector:
number:
min: 0
max: 5
step: 0.1
mode: slider
unit_of_measurement: °C / °F
input_aggressive_mode_offset:
name: 😡 Agressive Mode - Offset
description: >
`aggressive mode` `tweak`
Here you can define the offset that will be added to your target temperature if the room temperature is not in range of your target temperature.
If your room temperature is not in the defined range, e.g. 19.5°C - 20.5°C this offset will be added to your target temperature.
default: 0
selector:
number:
min: 0
max: 5
step: 0.5
mode: slider
unit_of_measurement: °C / °F
# TWEAKS
input_service_call_delay:
name: ⚙️ Service Call Delay
description: >
`tweak`
Some [thermostats](https://www.home-assistant.io/integrations/climate/) have problems with setting mode and temperature. You can try to increase the
delay between the service calls. This could fix your problems.
default:
hours: 0
minutes: 0
seconds: 2
selector:
duration:
input_tweaks:
name: ⚙️ Tweaks
description: "
`tweak`
> ### ↩️ Reset Temperature
> Reset your temperature after party ends or temperature go from comfort to eco
> ### 🛑 Turn *OFF* Instead Of Eco Temperature
> Turn off your [thermostats](https://www.home-assistant.io/integrations/climate/) instead of lower the temperature to eco temperature
> ### ⬇️ Min Temperature Instead Of *OFF*
> Lower the temperature instead of turning them *OFF*, e.g. during airing
> ### ↕️ Off If Above/Below Room Temperature
> Turns your [climate](https://www.home-assistant.io/integrations/climate/) entity *off* if the target temperature is below(cooling) / above(heating) the room temperature
> ### 🇫 Fahrenheit
> Enable this if your unit of measurement is Fahrenheit (untested)
"
default: []
selector:
select:
options:
- label: "↩️ Reset Temperature"
value: reset_temperature
- label: "🛑 Off Instead Of Eco"
value: off_instead_min
- label: "⬇️ Min Instead Of Off"
value: not_off_but_min
- label: "↕️ Off If Above/Below Room Temperature"
value: heat_only_if_below_real_temp
- label: "🇫 Fahrenheit"
value: fahrenheit
multiple: true
custom_value: false
mode: list
# E X P E R I M E N T A L
# input_tweaks_experimental:
# name: 🧪 Experimental Tweaks
# description: "
# `tweak`
# > ### 🌡️ Physical Temperature Change
# > Adjust the temperature via your thermostats.
# > ### 🎈 Start Party Timer On Physical Change
# > Start your party timer when you change the temperature via your thermostats.
# **HINT**: This features may won't work properly since there is a [bug](https://github.com/home-assistant/core/issues/99914) in home assistant.
# "
# default: []
# selector:
# select:
# options:
# - label: "🌡️ Physical Temperature Change"
# value: physical_temperature_change
# - label: "🎈 Start Party Timer On Physical Change"
# value: physical_party_timer
# multiple: true
# custom_value: false
# mode: list
input_force_max_temperature:
name: 🥵 Force Max Temperature
description: >
`optional`
Set the maximum temperature of all [thermostats](https://www.home-assistant.io/integrations/climate/) regardless of any other settings.
**HINT:** Implemented by developer for maintenance reasons. Create your helper [here](https://my.home-assistant.io/redirect/helpers/).
default:
selector:
entity:
filter:
- domain:
- input_boolean
multiple: false
# C U S T O M A C T I O N
input_custom_action:
name: 🎬 Custom Action
description: >
`optional`
This custom action gets executed with every temperature / mode change except calibration. If you want to control other devices just check states before doing a service call.
Use the variable *is_heating* in your conditions. *True* means heating is active.
default:
selector:
action:
input_log_level:
name: ✍️ Log Level
description: ""
default: debug
selector:
select:
mode: dropdown
options:
- info
- warning
- error
- debug
##################################################
############### T R I G G E R ####################
##################################################
trigger_variables:
# M O D E S
input_mode_winter: !input input_mode_winter
input_mode_party: !input input_mode_party
input_mode_guest: !input input_mode_guest
input_force_max_temperature: !input input_force_max_temperature
input_hvac_mode: !input input_hvac_mode
input_temperature_comfort: !input input_temperature_comfort
input_temperature_minimum: !input input_temperature_minimum
input_time_based_temperature_change_valve_target: !input input_time_based_temperature_change_valve_target
# S C H E D U L E R
input_schedulers: !input input_schedulers
input_scheduler_selector: !input input_scheduler_selector
input_scheduler_presence: !input input_scheduler_presence
# A D D I T I O N A L S E T T I N G S
input_trvs: !input input_trvs
input_windows: !input input_windows
input_temperature_sensor: !input input_temperature_sensor
input_persons: !input input_persons
input_presence_sensor: !input input_presence_sensor
input_calibration_timeout: !input input_calibration_timeout
input_proximity: !input input_proximity
input_proximity_duration: !input input_proximity_duration
input_proximity_distance: !input input_proximity_distance
input_mode_outside_temperature: !input input_mode_outside_temperature
input_mode_outside_temperature_threshold: !input input_mode_outside_temperature_threshold
input_frost_protection_duration: !input input_frost_protection_duration
input_tweaks: !input input_tweaks
is_heat_only_if_below_real_temp: "{{ 'heat_only_if_below_real_temp' in input_tweaks}}"
factor: "{{ iif(input_hvac_mode == 'cool', -1, 1) | int }}"
trigger:
# S Y S T E M T R I G G E R S
- platform: homeassistant
event: start
id: temperature_change_hastart
- platform: event
event_type: automation_reloaded
id: temperature_change_reload
# S T A T E T R I G G E R S
# not implemented yet
# - platform: state
# entity_id: !input input_trvs
# attribute: temperature
# for:
# seconds: 5
# id: temperature_change_valve_target
# T E M P E R A T U R E C H A N G E S
- platform: template
value_template: >
{% if input_temperature_minimum != none %}
{{ now() - states.input_number[input_temperature_minimum.split('.')[1]].last_updated >= timedelta(seconds=2) }}
{% else %}
{{ false }}
{% endif %}