-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathscripts.yaml
1337 lines (1333 loc) · 34 KB
/
scripts.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
kitchen_extractor_timer:
alias: Kitchen Extractor Fan Timer
sequence:
- entity_id: switch.kitchen_extractor_fan
service: switch.turn_on
- delay: 00:{{states('input_number.kitchen_fan_timer_duration') | round(0)}}:00
- entity_id: switch.kitchen_extractor_fan
service: switch.turn_off
mode: restart
front_garden_lawn_irrigation_timer:
alias: Lawn Irrigation Timer
sequence:
- entity_id: switch.front_garden_lawn_irrigation_valve
service: switch.turn_on
- delay: 00:{{states('input_number.front_garden_lawn_irrigation_duration') | round(0)}}
- entity_id: switch.front_garden_lawn_irrigation_valve
service: switch.turn_off
front_garden_pot_irrigation_timer:
alias: Pots Irrigation Timer
sequence:
- entity_id: switch.front_garden_pot_irrigation_valve
service: switch.turn_on
- delay: 00:{{states('input_number.front_garden_pot_irrigation_duration') | round(0)}}
- entity_id: switch.front_garden_pot_irrigation_valve
service: switch.turn_off
back_garden_irrigation_timer:
alias: Garden Irrigation Timer
sequence:
- entity_id: switch.back_garden_irrigation_valve
service: switch.turn_on
- delay: 00:{{states('input_number.back_garden_irrigation_duration') | round(0)}}
- entity_id: switch.back_garden_irrigation_valve
service: switch.turn_off
back_garden_lawn_irrigation_timer:
alias: Garden Lawn Irrigation Timer
sequence:
- entity_id: switch.back_garden_lawn_1_irrigation_valve
service: switch.turn_on
- delay: 00:{{states('input_number.back_garden_lawn_irrigation_duration') | round(0)}}
- entity_id: switch.back_garden_lawn_1_irrigation_valve
service: switch.turn_off
- entity_id: switch.back_garden_lawn_2_irrigation_valve
service: switch.turn_on
- delay: 00:{{states('input_number.back_garden_lawn_irrigation_duration') | round(0)}}
- entity_id: switch.back_garden_lawn_2_irrigation_valve
service: switch.turn_off
saa_sleep_tracking_started:
alias: Sleep Tracking Started
sequence:
- service: light.turn_off
entity_id: light.bedroom
saa_smart_period:
alias: Sleep Tracking Smart Period
sequence:
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 10
- delay:
minutes: 8
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 41
- delay:
minutes: 8
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 92
- delay:
minutes: 8
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 143
- delay:
minutes: 8
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 194
- delay:
minutes: 8
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 245
saa_alarm_alert_start:
alias: Sleep Tracking Alarm Alert
sequence:
- service: light.turn_on
entity_id: light.bedroom
data:
brightness: 255
'1576108013122':
alias: Christmas Disco
sequence:
- data: {}
entity_id: light.christmas_bedroom_star
service: light.toggle
- entity_id: light.christmas_garden_lights
service: light.toggle
- delay: 00:00:04
- entity_id: light.christmas_living_room_star
service: light.toggle
- delay: 00:00:04
'1585905714103':
alias: BusyLight - I'm On A Call
sequence:
- data:
brightness: 148
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 148
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 255
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 255
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 148
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 148
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 255
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 255
rgb_color:
- 255
- 0
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
'1585906019835':
alias: BusyLight - I'm Free
sequence:
- data:
brightness: 148
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 148
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 255
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 255
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 148
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 148
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 255
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 255
rgb_color:
- 0
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
'1585906111236':
alias: BusyLight - I'm Working
sequence:
- data:
brightness: 148
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 148
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 255
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 255
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 148
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 148
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
- delay: 00:00:01
- data:
brightness: 255
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_on
- data:
brightness: 255
rgb_color:
- 255
- 255
- 0
entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_on
'1586361703646':
alias: BusyLight - I'm Away
sequence:
- entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_off
- entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_off
- delay: 00:00:06
- entity_id: light.busy_light_mk2_1_busy_light
service: light.turn_off
- entity_id: light.busy_light_mk2_2_busy_light
service: light.turn_off
turn_on_then_dim_kitchen_under_counter_lights:
alias: Dim Kitchen Lights [OLD UNUSED]
sequence:
- service: light.turn_on
data: {}
entity_id: light.kitchen_under_counter_lights
- delay: 00:00:10
- service: shell_command.rflink_dim_kitchen_lights
data: {}
mode: single
icon: mdi:brightness-6
new_script_test:
alias: New Script test
sequence:
- service: media_player.play_media
target:
entity_id: media_player.office_display
data:
media_content_id: media-source://camera/camera.testonvif_profile_1_h264
media_content_type: application/vnd.apple.mpegurl
metadata:
title: testonvif - profile_1 h264
thumbnail: /api/camera_proxy/camera.testonvif_profile_1_h264
media_class: video
children_media_class:
navigateIds:
- {}
- media_content_type: app
media_content_id: media-source://camera
mode: single
find_my_remote:
alias: Find shield remote control
sequence:
- data:
command: am start -a android.intent.action.VIEW -d -n com.nvidia.remotelocator/.ShieldRemoteLocatorActivity
entity_id: media_player.android_tv_192_168_10_34
service: androidtv.adb_command
mode: single
icon: mdi:target
energenie_etrv_set_reporting_interval:
alias: 'Energenie eTRV: Set Reporting Interval = 300 (Winter Use)'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: number
entity_id: 259300e10fbba9cb42d5e9655cd6d747
type: set_value
value: 300
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: number
entity_id: 6b60505ff3f1c1cc78d487b66f56c94b
type: set_value
value: 300
- device_id: e79922e5a787ed8db81ee253715ea823
domain: number
entity_id: 7925ab4b821bb876bcc45a7431822d26
type: set_value
value: 300
- device_id: 55d26468639a4f1005742215878de937
domain: number
entity_id: 7b5c6e97f3a71d9c2090b3c281164be6
type: set_value
value: 300
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: number
entity_id: 70f7b778cca89fa3a8465970c92ac92c
type: set_value
value: 300
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: number
entity_id: eabecc3a2d282f57ec79bd0e5d9dfa6f
type: set_value
value: 300
- device_id: d87bf9712abd725b400a815405c374ac
domain: number
entity_id: 5d3fe98b3fe9a2d3448ec34131620091
type: set_value
value: 300
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: number
entity_id: 08469c03165893efaa9b5a297374484f
type: set_value
value: 300
enabled: false
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: number
entity_id: 7cb4e59be67a4f8f1661a93858a3a851
type: set_value
value: 300
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: number
entity_id: 7f775e0fd1949553bc8c28923b13626e
type: set_value
value: 300
mode: single
icon: mdi:clock-end
description: 'Set Reporting Interval to 5 mins (minimum) for winter use
'
energenie_etrv_set_low_power_mode_off:
alias: 'Energenie eTRV: Set low power mode = ON (Summer Use)'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: climate
entity_id: 85fd7edb412d78a913c1bf7147db79a5
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: climate
entity_id: 1dc6cd56095c82c66dc458c436527a3d
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: e79922e5a787ed8db81ee253715ea823
domain: climate
entity_id: 62b634275f68a5e6e82986ad6fe56f13
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: 55d26468639a4f1005742215878de937
domain: climate
entity_id: 168ee9f59e0b15f8719800c92f16f8c9
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: climate
entity_id: a9f2ad8cd9cfb413cb59e78f56bcca5b
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: climate
entity_id: f175045657712af0731ec9edf74b1479
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: d87bf9712abd725b400a815405c374ac
domain: climate
entity_id: e46f27494a4d65b24c09f340418a9438
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: climate
entity_id: 7e3ee21dcf0862c988f881530cc3ef3b
type: set_preset_mode
preset_mode: Low Power Mode ON
enabled: false
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: climate
entity_id: b8a6f7260b91a515810a154c4bb51486
type: set_preset_mode
preset_mode: Low Power Mode ON
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: climate
entity_id: c56d5518b41049387e082722202d573b
type: set_preset_mode
preset_mode: Low Power Mode ON
mode: single
icon: mdi:speedometer-fast
description: 'low power mode = On for summer use
'
heat_bathroom_towel_rail:
alias: Heat Bathroom Towel Rail
sequence:
- service: climate.set_temperature
data:
hvac_mode: heat
temperature: 30
target:
entity_id:
- climate.hallway
- service: climate.set_temperature
data:
temperature: 30
target:
entity_id: climate.bathroom_radiator
- delay: 00:{{states('input_number.bathroom_towel_on_time') | round(0)}}:00
- service: climate.set_temperature
data:
temperature: 12
target:
entity_id:
- climate.hallway
- delay:
hours: 0
minutes: 30
seconds: 0
milliseconds: 0
- service: climate.set_temperature
data:
temperature: 12
target:
entity_id:
- climate.hallway
- delay:
hours: 1
minutes: 30
seconds: 0
milliseconds: 0
- service: climate.set_temperature
data:
temperature: 12
target:
entity_id:
- climate.hallway
mode: restart
icon: mdi:radiator
temporarily_disable_front_lawn_defences_for_2_hours:
alias: 'Temporarily Disable Front Lawn Defences For 2 Hours '
sequence:
- service: automation.turn_off
data:
stop_actions: true
target:
entity_id: automation.front_lawn_anti_cat
- delay:
hours: 2
minutes: 0
seconds: 0
milliseconds: 0
- service: automation.turn_on
data: {}
target:
entity_id: automation.front_lawn_anti_cat
mode: restart
icon: mdi:camera-timer
sync_to_google:
alias: Sync To Google
sequence:
- service: google_assistant.request_sync
metadata: {}
data: {}
mode: single
icon: mdi:google
announce_bunny_food_time:
alias: Announce bunny food time
sequence:
- action: media_player.volume_set
metadata: {}
data:
volume_level: 0.9
target:
entity_id:
- media_player.dining_room_display
- media_player.kitchen_display
- action: media_player.play_media
metadata: {}
data:
media_content_type: audio/mp3
media_content_id: https://hass.richardhuish.com/local/bunny_food_time.mp3
target:
entity_id:
- media_player.kitchen_display
- media_player.dining_room_display
description: ''
icon: mdi:rabbit-variant
energenie_etrv_set_low_power_mode_on:
alias: 'Energenie eTRV: Set low power mode = OFF (Winter Use)'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: climate
entity_id: 85fd7edb412d78a913c1bf7147db79a5
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: climate
entity_id: 1dc6cd56095c82c66dc458c436527a3d
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: e79922e5a787ed8db81ee253715ea823
domain: climate
entity_id: 62b634275f68a5e6e82986ad6fe56f13
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: 55d26468639a4f1005742215878de937
domain: climate
entity_id: 168ee9f59e0b15f8719800c92f16f8c9
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: climate
entity_id: a9f2ad8cd9cfb413cb59e78f56bcca5b
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: climate
entity_id: f175045657712af0731ec9edf74b1479
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: d87bf9712abd725b400a815405c374ac
domain: climate
entity_id: e46f27494a4d65b24c09f340418a9438
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: climate
entity_id: 7e3ee21dcf0862c988f881530cc3ef3b
type: set_preset_mode
preset_mode: Low Power Mode OFF
enabled: false
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: climate
entity_id: b8a6f7260b91a515810a154c4bb51486
type: set_preset_mode
preset_mode: Low Power Mode OFF
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: climate
entity_id: c56d5518b41049387e082722202d573b
type: set_preset_mode
preset_mode: Low Power Mode OFF
mode: single
icon: mdi:speedometer
description: 'low power mode = OFF for winter use
'
energenie_etrv_set_reporting_interval_3600:
alias: 'Energenie eTRV: Set Reporting Interval = 3600 (Summer Use)'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: number
entity_id: 259300e10fbba9cb42d5e9655cd6d747
type: set_value
value: 3600
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: number
entity_id: 6b60505ff3f1c1cc78d487b66f56c94b
type: set_value
value: 3600
- device_id: e79922e5a787ed8db81ee253715ea823
domain: number
entity_id: 7925ab4b821bb876bcc45a7431822d26
type: set_value
value: 3600
- device_id: 55d26468639a4f1005742215878de937
domain: number
entity_id: 7b5c6e97f3a71d9c2090b3c281164be6
type: set_value
value: 3600
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: number
entity_id: 70f7b778cca89fa3a8465970c92ac92c
type: set_value
value: 3600
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: number
entity_id: eabecc3a2d282f57ec79bd0e5d9dfa6f
type: set_value
value: 3600
- device_id: d87bf9712abd725b400a815405c374ac
domain: number
entity_id: 5d3fe98b3fe9a2d3448ec34131620091
type: set_value
value: 3600
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: number
entity_id: 08469c03165893efaa9b5a297374484f
type: set_value
value: 3600
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: number
entity_id: 7cb4e59be67a4f8f1661a93858a3a851
type: set_value
value: 3600
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: number
entity_id: 7f775e0fd1949553bc8c28923b13626e
type: set_value
value: 3600
mode: single
icon: mdi:clock-end
description: Set Reporting Interval to 1 hour for summer use
energenie_etrv_set_valve_auto:
alias: 'Energenie eTRV: Set Valve Auto'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: climate
entity_id: 85fd7edb412d78a913c1bf7147db79a5
type: set_preset_mode
preset_mode: Valve Auto
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: climate
entity_id: 1dc6cd56095c82c66dc458c436527a3d
type: set_preset_mode
preset_mode: Valve Auto
- device_id: e79922e5a787ed8db81ee253715ea823
domain: climate
entity_id: 62b634275f68a5e6e82986ad6fe56f13
type: set_preset_mode
preset_mode: Valve Auto
- device_id: 55d26468639a4f1005742215878de937
domain: climate
entity_id: 168ee9f59e0b15f8719800c92f16f8c9
type: set_preset_mode
preset_mode: Valve Auto
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: climate
entity_id: a9f2ad8cd9cfb413cb59e78f56bcca5b
type: set_preset_mode
preset_mode: Valve Auto
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: climate
entity_id: f175045657712af0731ec9edf74b1479
type: set_preset_mode
preset_mode: Valve Auto
- device_id: d87bf9712abd725b400a815405c374ac
domain: climate
entity_id: e46f27494a4d65b24c09f340418a9438
type: set_preset_mode
preset_mode: Valve Auto
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: climate
entity_id: 7e3ee21dcf0862c988f881530cc3ef3b
type: set_preset_mode
preset_mode: Valve Auto
enabled: false
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: climate
entity_id: b8a6f7260b91a515810a154c4bb51486
type: set_preset_mode
preset_mode: Valve Auto
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: climate
entity_id: c56d5518b41049387e082722202d573b
type: set_preset_mode
preset_mode: Valve Auto
mode: single
icon: mdi:thermostat-auto
description: ''
energenie_etrv_set_valve_closed:
alias: 'Energenie eTRV: Set Valve Closed'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: climate
entity_id: 85fd7edb412d78a913c1bf7147db79a5
type: set_preset_mode
preset_mode: Valve Closed
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: climate
entity_id: 1dc6cd56095c82c66dc458c436527a3d
type: set_preset_mode
preset_mode: Valve Closed
- device_id: e79922e5a787ed8db81ee253715ea823
domain: climate
entity_id: 62b634275f68a5e6e82986ad6fe56f13
type: set_preset_mode
preset_mode: Valve Closed
- device_id: 55d26468639a4f1005742215878de937
domain: climate
entity_id: 168ee9f59e0b15f8719800c92f16f8c9
type: set_preset_mode
preset_mode: Valve Closed
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: climate
entity_id: a9f2ad8cd9cfb413cb59e78f56bcca5b
type: set_preset_mode
preset_mode: Valve Closed
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: climate
entity_id: f175045657712af0731ec9edf74b1479
type: set_preset_mode
preset_mode: Valve Closed
- device_id: d87bf9712abd725b400a815405c374ac
domain: climate
entity_id: e46f27494a4d65b24c09f340418a9438
type: set_preset_mode
preset_mode: Valve Closed
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: climate
entity_id: 7e3ee21dcf0862c988f881530cc3ef3b
type: set_preset_mode
preset_mode: Valve Closed
enabled: false
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: climate
entity_id: b8a6f7260b91a515810a154c4bb51486
type: set_preset_mode
preset_mode: Valve Closed
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: climate
entity_id: c56d5518b41049387e082722202d573b
type: set_preset_mode
preset_mode: Valve Closed
mode: single
icon: mdi:valve-closed
description: ''
energenie_etrv_set_valve_open:
alias: 'Energenie eTRV: Set Valve Open'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: climate
entity_id: 85fd7edb412d78a913c1bf7147db79a5
type: set_preset_mode
preset_mode: Valve Open
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: climate
entity_id: 1dc6cd56095c82c66dc458c436527a3d
type: set_preset_mode
preset_mode: Valve Open
- device_id: e79922e5a787ed8db81ee253715ea823
domain: climate
entity_id: 62b634275f68a5e6e82986ad6fe56f13
type: set_preset_mode
preset_mode: Valve Open
- device_id: 55d26468639a4f1005742215878de937
domain: climate
entity_id: 168ee9f59e0b15f8719800c92f16f8c9
type: set_preset_mode
preset_mode: Valve Open
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: climate
entity_id: a9f2ad8cd9cfb413cb59e78f56bcca5b
type: set_preset_mode
preset_mode: Valve Open
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: climate
entity_id: f175045657712af0731ec9edf74b1479
type: set_preset_mode
preset_mode: Valve Open
- device_id: d87bf9712abd725b400a815405c374ac
domain: climate
entity_id: e46f27494a4d65b24c09f340418a9438
type: set_preset_mode
preset_mode: Valve Open
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: climate
entity_id: 7e3ee21dcf0862c988f881530cc3ef3b
type: set_preset_mode
preset_mode: Valve Open
enabled: false
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: climate
entity_id: b8a6f7260b91a515810a154c4bb51486
type: set_preset_mode
preset_mode: Valve Open
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: climate
entity_id: c56d5518b41049387e082722202d573b
type: set_preset_mode
preset_mode: Valve Open
mode: single
icon: mdi:valve-open
description: ''
energenie_etrv_set_to_summer_mode:
alias: 'Energenie eTRV: Set to summer mode'
sequence:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.energenie_etrv_set_low_power_mode_off
- delay:
hours: 3
minutes: 0
seconds: 0
milliseconds: 0
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.energenie_etrv_set_valve_closed
- delay:
hours: 3
minutes: 0
seconds: 0
milliseconds: 0
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.energenie_etrv_set_reporting_interval_3600
- action: automation.turn_off
metadata: {}
data:
stop_actions: true
target:
entity_id: automation.energenie_etrv_calibrate_once_a_week
description: ''
icon: mdi:weather-sunny
energenie_etrv_set_to_winter_mode:
alias: 'Energenie eTRV: Set to winter mode'
sequence:
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id:
- script.energenie_etrv_set_reporting_interval
- delay:
hours: 2
minutes: 0
seconds: 0
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.energenie_etrv_set_low_power_mode_on
- delay:
hours: 2
minutes: 0
seconds: 0
- action: script.turn_on
metadata: {}
data: {}
target:
entity_id: script.energenie_etrv_set_valve_auto
- delay:
hours: 2
minutes: 0
seconds: 0
- action: automation.turn_on
metadata: {}
data: {}
target:
entity_id: automation.energenie_etrv_calibrate_once_a_week
- action: automation.trigger
metadata: {}
data:
skip_condition: true
target:
entity_id: automation.energenie_etrv_calibrate_once_a_week
description: ''
icon: mdi:snowflake
energenie_etrv_set_valve_heat:
alias: 'Energenie eTRV: Set Valve Heat'
sequence:
- device_id: 061f81b04836d8e074d7e2542b21767c
domain: climate
entity_id: 85fd7edb412d78a913c1bf7147db79a5
type: set_hvac_mode
hvac_mode: heat
- device_id: a46ff2f2479fd7381a267a77a12734ae
domain: climate
entity_id: 1dc6cd56095c82c66dc458c436527a3d
type: set_hvac_mode
hvac_mode: heat
- device_id: e79922e5a787ed8db81ee253715ea823
domain: climate
entity_id: 62b634275f68a5e6e82986ad6fe56f13
type: set_hvac_mode
hvac_mode: heat
- device_id: 55d26468639a4f1005742215878de937
domain: climate
entity_id: 168ee9f59e0b15f8719800c92f16f8c9
type: set_hvac_mode
hvac_mode: heat
- device_id: f694a04cab17376f9ccbb97b67b6365d
domain: climate
entity_id: a9f2ad8cd9cfb413cb59e78f56bcca5b
type: set_hvac_mode
hvac_mode: heat
- device_id: 9fb3ba0a224918b6c1b43afbcc3c1f23
domain: climate
entity_id: f175045657712af0731ec9edf74b1479
type: set_hvac_mode
hvac_mode: heat
- device_id: d87bf9712abd725b400a815405c374ac
domain: climate
entity_id: e46f27494a4d65b24c09f340418a9438
type: set_hvac_mode
hvac_mode: heat
- device_id: b1e80b075b7aff30c3ef1b6e6b022e25
domain: climate
entity_id: 7e3ee21dcf0862c988f881530cc3ef3b
type: set_hvac_mode
hvac_mode: heat
- device_id: 71e963eadf1071d0f777742a6fbb5cf9
domain: climate
entity_id: b8a6f7260b91a515810a154c4bb51486
type: set_hvac_mode
hvac_mode: heat
- device_id: a9d1acaaf374a3234065ce3dca7d9f04
domain: climate
entity_id: c56d5518b41049387e082722202d573b
type: set_hvac_mode