-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathautomations.yaml
7592 lines (7337 loc) · 229 KB
/
automations.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
- id: '1691007313405'
alias: Assist play specific artist
description: ''
triggers:
- command:
- play the artist {artist}
- play some [of] {artist}
trigger: conversation
conditions: []
actions:
- data:
media_type: artist
enqueue: replace
media_id: '{{ trigger.slots.artist }}'
target:
entity_id: media_player.group_mass_home_group_speakers
action: music_assistant.play_media
mode: single
- id: '1691088980213'
alias: Assist Play Playlist
description: ''
triggers:
- command:
- (start|play) [the] {playlist} playlist
trigger: conversation
conditions: []
actions:
- data:
media_content_type: playlist
media_content_id: '{{ trigger.slots.playlist }}'
target:
entity_id: media_player.group_mass_home_group_speakers
action: media_player.play_media
mode: single
- id: '1691094215164'
alias: Assist Set Thermostats
description: ''
trigger:
- platform: conversation
command:
- (set|change) [the] {thermostat} (AC|thermostat) to {temperature}
condition: []
action:
- service: climate.set_temperature
data:
temperature: '{{ trigger.slots.temperature }}'
target:
entity_id: climate.{{ trigger.slots.thermostat| lower | replace('living room','livingroom')}}_ac
mode: single
- id: '1698434157594'
alias: Update Map Extractor camera
description: ''
use_blueprint:
path: PiotrMachowski/update_map_extractor.yaml
input:
vacuum: vacuum.xiaomi_vacuum_cleaner
camera: camera.xiaomi_cloud_map_extractor
mode_to_handle: turn_off_when_docked
- id: '1708472009602'
alias: Play Random Music when maxi awakes at home
description: This Automation will start music on the home group when maxi awakes
triggers:
- entity_id:
- sensor.is_maxi_asleep
from: asleep
to: awake
for:
hours: 0
minutes: 6
seconds: 0
trigger: state
conditions:
- condition: state
entity_id: person.maximiliano
state: home
- condition: state
entity_id: media_player.group_mass_home_group_speakers
state: 'off'
- condition: state
entity_id: binary_sensor.all_present_sleeping
state: 'off'
actions:
- data:
media_id: All favorited tracks
enqueue: replace
action: music_assistant.play_media
target:
entity_id: media_player.group_mass_home_group_speakers
mode: single
- id: '1708472370553'
alias: Stop bedroom speaker when bedroom sleeper awake
description: ''
triggers:
- entity_id:
- input_boolean.sleeper_in_bedroom
from: 'on'
to: 'off'
for:
hours: 0
minutes: 6
seconds: 0
trigger: state
conditions: []
actions:
- metadata: {}
data: {}
action: media_player.turn_off
target:
entity_id: media_player.universal_bedroom_speakers
mode: single
- id: '1711377375732'
alias: Assist play song by artist next
description: ''
triggers:
- command:
- queue {song} by {artist}
- cue {song} by {artist}
trigger: conversation
conditions: []
actions:
- data:
limit: 1
media_type:
- track
name: '{{ trigger.slots.song }}'
artist: '{{ trigger.slots.artist }}'
response_variable: found_song
action: music_assistant.search
enabled: false
- target:
entity_id: media_player.group_mass_home_group_speakers
data:
media_type: track
enqueue: next
media_id: '{{ trigger.slots.song }}'
artist: '{{ trigger.slots.artist }}'
action: music_assistant.play_media
mode: single
- id: '1711377604136'
alias: Assist Play song by artist now
description: ''
triggers:
- command:
- play {song} by {artist}
trigger: conversation
conditions: []
actions:
- target:
entity_id:
- media_player.group_mass_home_group_speakers
data:
media_type: track
enqueue: play
media_id: '{{ trigger.slots.song }}'
artist: '{{ trigger.slots.artist }}'
action: music_assistant.play_media
- target:
entity_id:
- media_player.group_mass_home_group_speakers
data:
media_type: track
enqueue: add
media_id: '{{ found_song.tracks.0.name }}'
radio_mode: true
action: mass.play_media
enabled: false
mode: single
- id: '1711565389493'
alias: Assist Restart Music Assistant
description: ''
trigger:
- platform: conversation
command: Restart Music Assistant
condition: []
action:
- service: hassio.addon_restart
metadata: {}
data:
addon: d5369777_music_assistant_beta
mode: single
- id: '1711576326986'
alias: Assist play music (default)
description: ''
triggers:
- command:
- play music
- play some music
trigger: conversation
conditions: []
actions:
- data:
media_type: playlist
enqueue: replace
media_id: local maxi playlist
action: music_assistant.play_media
target:
entity_id: media_player.group_mass_home_group_speakers
mode: single
- id: '1713377627308'
alias: Mute Speakers in the hotbox when computer mic is in use
description: ''
triggers:
- type: turned_on
device_id: 0cc46b896079dbc299255330f9ea856e
entity_id: 470a4142c11434774d1b570a456f145b
domain: binary_sensor
trigger: device
for:
hours: 0
minutes: 0
seconds: 2
conditions:
- condition: not
conditions:
- condition: state
entity_id: media_player.universal_office_speakers
state: 'off'
actions:
- metadata: {}
data:
is_volume_muted: true
action: media_player.volume_mute
target:
entity_id: media_player.universal_hotbox_speakers
mode: single
- id: '1713377704036'
alias: Unmute Speakers in the hotbox when computer mic goes off
description: ''
triggers:
- type: turned_off
device_id: 0cc46b896079dbc299255330f9ea856e
entity_id: 470a4142c11434774d1b570a456f145b
domain: binary_sensor
trigger: device
for:
hours: 0
minutes: 0
seconds: 2
conditions:
- condition: not
conditions:
- condition: state
entity_id: media_player.universal_hotbox_speakers
state: 'off'
actions:
- metadata: {}
data:
is_volume_muted: false
action: media_player.volume_mute
target:
entity_id: media_player.universal_hotbox_speakers
mode: single
- id: '1713378517441'
alias: Lock front door when it is closed for 5 seconds
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.sensor_front_outside_door_contact
from:
to: 'off'
for:
hours: 0
minutes: 0
seconds: 5
condition:
- condition: not
conditions:
- condition: state
entity_id: lock.lock_front_door
state: locked
action:
- service: lock.lock
metadata: {}
data: {}
target:
entity_id: lock.lock_front_door
mode: single
- id: '1713378679048'
alias: Lock front door 5 minutes after unlocking
description: ''
trigger:
- platform: state
entity_id:
- lock.lock_front_door
to: unlocked
for:
hours: 0
minutes: 5
seconds: 0
condition:
- condition: state
entity_id: binary_sensor.sensor_front_outside_door_contact
state: 'off'
action:
- service: lock.lock
metadata: {}
data: {}
target:
entity_id: lock.lock_front_door
mode: single
- id: '1713378916074'
alias: Alert that the front door remained open
description: ''
triggers:
- entity_id:
- binary_sensor.sensor_front_door_contact
to: 'on'
for:
hours: 0
minutes: 3
seconds: 0
trigger: state
conditions:
- condition: state
entity_id: input_boolean.aerating_appartment
state: 'off'
actions:
- repeat:
sequence:
- action: script.non_important_broadcast_alert_in_the_house
data:
message: Front door remained opened
- delay:
hours: 0
minutes: 5
seconds: 0
milliseconds: 0
while:
- condition: state
entity_id: binary_sensor.sensor_front_door_contact
state: 'on'
enabled: true
mode: restart
- id: '1713399927983'
alias: Alert that the vacuum is stuck
description: ''
triggers:
- entity_id:
- vacuum.xiaomi_vacuum_cleaner
to: error
trigger: state
conditions: []
actions:
- repeat:
sequence:
- metadata: {}
data:
message: Vacuum Stuck
action: script.non_important_broadcast_alert_in_the_house
- delay:
hours: 0
minutes: 10
seconds: 0
milliseconds: 0
until:
- condition: not
conditions:
- condition: state
entity_id: vacuum.xiaomi_vacuum_cleaner
state: error
mode: single
- id: '1713407734344'
alias: Lock back door when it is closed for 5 seconds
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.sensor_back_outside_door_contact
from:
to: 'off'
for:
hours: 0
minutes: 0
seconds: 5
condition:
- condition: not
conditions:
- condition: state
entity_id: lock.back_door
state: locked
action:
- service: lock.lock
metadata: {}
data: {}
target:
entity_id: lock.back_door
mode: single
- id: '1713407853586'
alias: Lock back door 5 minutes after unlocking
description: ''
trigger:
- platform: state
entity_id:
- lock.back_door
to: unlocked
for:
hours: 0
minutes: 5
seconds: 0
condition:
- condition: state
entity_id: binary_sensor.sensor_back_outside_door_contact
state: 'off'
action:
- service: lock.lock
metadata: {}
data: {}
target:
entity_id: lock.back_door
mode: single
- id: '1713408006382'
alias: Turn back door lights on when someone is detected
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.back_door_camera_person_occupancy
to: 'on'
condition: []
action:
- service: light.turn_on
metadata: {}
data:
color_temp: 254
brightness: 255
target:
entity_id: light.back_door_light
- wait_for_trigger:
- platform: state
entity_id:
- binary_sensor.back_door_camera_person_occupancy
to: 'off'
for:
hours: 0
minutes: 0
seconds: 30
timeout:
hours: 0
minutes: 0
seconds: 0
milliseconds: 0
- service: light.turn_off
metadata: {}
data:
transition: 30
target:
entity_id: light.back_door_light
mode: single
- id: '1713451307697'
alias: Sleep actions when "maxi is sleeping" is turned on and maxi is home
description: Close the blinds, turn off the lights and turn on the sleep mode of
Adaptative lighting
triggers:
- entity_id:
- binary_sensor.maxi_sleeping
to: 'on'
for:
hours: 0
minutes: 5
seconds: 0
trigger: state
conditions:
- condition: state
entity_id: input_boolean.kink_party
state: 'off'
- condition: state
entity_id: input_boolean.acid_time
state: 'off'
- condition: state
entity_id: input_boolean.party_mode
state: 'off'
- condition: state
entity_id: person.maximiliano
state: home
actions:
- metadata: {}
data: {}
target:
entity_id: switch.adaptive_lighting_sleep_mode_adaptive_lighting
action: switch.turn_on
- metadata: {}
data: {}
target:
entity_id:
- cover.cover_livingroom_blinds
- cover.cover_salon_blinds
- cover.cover_hotbox_blinds
- cover.cover_bedroom_blinds
action: cover.close_cover
mode: single
- id: '1713451780517'
alias: Turn off Sleeping mode for Adaptative lighting on "MAxi is sleeping" turns
on off
description: Turn off sleep mode for adaptative lighting
triggers:
- entity_id:
- binary_sensor.maxi_sleeping
to: 'off'
trigger: state
conditions: []
actions:
- target:
entity_id: switch.adaptive_lighting_sleep_mode_adaptive_lighting
data: {}
action: switch.turn_off
mode: single
- id: '1713451981404'
alias: Turn on party mode when over 5 guests are over
description: Also check that no psychedelic or kink event is going on
trigger:
- platform: numeric_state
entity_id:
- sensor.amount_friends_home
above: 5
condition:
- condition: state
entity_id: input_boolean.kink_party
state: 'off'
- condition: state
entity_id: input_boolean.acid_time
state: 'off'
action:
- service: input_boolean.turn_on
target:
entity_id: input_boolean.party_mode
data: {}
mode: single
- id: '1713452550061'
alias: Close blinds when the house is empty
description: 'Close blinds '
triggers:
- entity_id:
- zone.home
for:
hours: 0
minutes: 5
seconds: 0
below: 0.9
trigger: numeric_state
conditions: []
actions:
- metadata: {}
data: {}
action: cover.close_cover
target:
entity_id:
- cover.group_all_blinds
- cover.cover_bedroom_blinds
mode: single
- id: '1713469587813'
alias: Turn lights to purple when a movie is played
description: ''
trigger:
- platform: state
entity_id:
- media_player.universal_office_chromecast
- media_player.universal_livingroom_chromecast
- media_player.universal_hotbox_top_chromecast
- media_player.universal_hotbox_down_chromecast
- media_player.universal_patio_chromecast
to: playing
condition: []
action:
- repeat:
sequence:
- variables:
on_lights_in_room: '{{ [area_id(trigger.entity_id)] | map(''area_id'') |
map(''area_entities'') | sum(start=[]) | select(''match'', ''^light.'')
| select(''is_state'',''on'') | unique | list }}
'
entity_id: '{{ trigger.entity_id }}
'
trigger_full: '{{ trigger.to_state.attributes }}
'
- if:
- condition: template
value_template: '{{ trigger.to_state.attributes.media_content_type == "movie"
}}'
- condition: template
value_template: '{{ not trigger.to_state.attributes.media_series_title }}'
then:
- service: light.turn_on
metadata: {}
data:
rgb_color:
- 255
- 0
- 255
brightness_pct: '30'
target:
entity_id: '{{ on_lights_in_room | list }}'
count: 1
enabled: true
- wait_for_trigger:
- platform: template
value_template: '{{ states(trigger.entity_id) == "off" }}'
timeout:
hours: 4
minutes: 0
seconds: 0
milliseconds: 0
continue_on_timeout: false
- variables:
on_lights_in_room: '{{ [area_id(trigger.entity_id)] | map(''area_id'') | map(''area_entities'')
| sum(start=[]) | select(''match'', ''^light.'') | select(''is_state'',''on'')
| unique | list }}
'
entity_id: '{{ trigger.entity_id }}
'
trigger_full: '{{ trigger.to_state.attributes }}
'
- service: light.turn_on
metadata: {}
data:
rgb_color:
- 255
- 255
- 255
brightness_pct: '100'
target:
entity_id: '{{ on_lights_in_room | list}}'
mode: restart
- id: '1713533595890'
alias: Disarm alarm-away when "User Home" turns on
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.user_home
to: 'on'
from: 'off'
condition:
- condition: state
entity_id: alarm_control_panel.home_alarm
state: armed_away
action:
- service: alarm_control_panel.alarm_disarm
metadata: {}
data: {}
target:
entity_id: alarm_control_panel.home_alarm
mode: single
- id: '1713533768680'
alias: Arm Alarm-Away when "User home" is off for 10 minutes
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.user_home
from: 'on'
to: 'off'
for:
hours: 0
minutes: 10
seconds: 0
condition: []
action:
- service: alarm_control_panel.alarm_arm_away
metadata: {}
data: {}
target:
entity_id: alarm_control_panel.home_alarm
mode: single
- id: '1713534223873'
alias: Turn ACs on and Off depending on house occupancy
description: ''
trigger:
- platform: state
entity_id:
- binary_sensor.user_home
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.user_home
state: 'on'
sequence:
- service: climate.set_preset_mode
metadata: {}
data:
preset_mode: none
target:
entity_id:
- climate.hotbox_ac
- climate.livingroom_ac
- climate.office_ac
- conditions:
- condition: state
entity_id: binary_sensor.user_home
state: 'off'
sequence:
- service: climate.set_preset_mode
metadata: {}
data:
preset_mode: away
target:
entity_id:
- climate.hotbox_ac
- climate.livingroom_ac
- climate.office_ac
mode: single
- id: '1713535684569'
alias: Play Muzak in the bathroom when someone enters
description: ''
triggers:
- entity_id:
- binary_sensor.sensor_bathroom_motion_occupancy
to: 'on'
from: 'off'
trigger: state
conditions:
- condition: not
conditions:
- condition: state
entity_id: media_player.bathroom_speaker
state: playing
actions:
- metadata: {}
data:
media_content_id: 'plex://{ "library_name": "Muzak", "shuffle": 1, "allow_multiple":
1}'
media_content_type: music
target:
entity_id: media_player.bathroom_speaker
action: media_player.play_media
- choose:
- conditions:
- condition: state
entity_id: binary_sensor.sensor_bathroom_door_contact
state: 'on'
sequence:
- metadata: {}
data:
volume_level: 0.1
target:
entity_id: media_player.bathroom_speaker
action: media_player.volume_set
- conditions:
- condition: state
entity_id: binary_sensor.sensor_bathroom_door_contact
state: 'off'
sequence:
- metadata: {}
data:
volume_level: 0.4
action: media_player.volume_set
target:
entity_id: media_player.bathroom_speaker
mode: restart
- id: '1713536409397'
alias: Raise music on the playing speaker when the Bathroom fans goes on
description: ''
triggers:
- entity_id:
- switch.bathroom_fan
from: 'off'
to: 'on'
trigger: state
conditions:
- condition: state
entity_id: binary_sensor.sensor_bathroom_door_contact
state: 'off'
actions:
- choose:
- conditions:
- condition: state
entity_id: media_player.bathroom_speaker
state: 'off'
sequence:
- metadata: {}
data: {}
target:
entity_id: media_player.bathroom_speaker
action: media_player.volume_up
- metadata: {}
data: {}
target:
entity_id: media_player.bathroom_speaker
action: media_player.volume_up
- conditions:
- condition: state
entity_id: media_player.bathroom_speaker
state: playing
sequence:
- metadata: {}
data: {}
target:
entity_id:
- media_player.bathroom_speaker
enabled: true
action: media_player.volume_up
- metadata: {}
data: {}
target:
entity_id:
- media_player.bathroom_speaker
enabled: true
action: media_player.volume_up
mode: single
- id: '1713536741103'
alias: Start/stop bathroom fan when Bathroom humidity changes
description: ''
triggers:
- entity_id:
- binary_sensor.shower_in_use
trigger: state
to: 'on'
for:
hours: 0
minutes: 1
seconds: 0
conditions: []
actions:
- metadata: {}
data: {}
target:
entity_id: switch.bathroom_fan
action: switch.turn_on
- wait_for_trigger:
- entity_id:
- sensor.sensor_bathroom_temperature_humidity
below: 65
trigger: numeric_state
continue_on_timeout: true
timeout:
hours: 0
minutes: 45
seconds: 0
milliseconds: 0
- metadata: {}
data: {}
target:
entity_id: switch.bathroom_fan
action: switch.turn_off
mode: restart
- id: '1713538197256'
alias: Control Hallway Tablet charging
description: ''
triggers:
- entity_id:
- sensor.hallway_tablet_battery
trigger: state
conditions: []
actions:
- choose:
- conditions:
- condition: numeric_state
entity_id: sensor.hallway_tablet_battery
above: 90
sequence:
- metadata: {}
data: {}
target:
entity_id: switch.plug_hallway_tablet
action: switch.turn_off
- conditions:
- condition: numeric_state
entity_id: sensor.hallway_tablet_battery
below: 15
sequence:
- metadata: {}
data: {}
target:
entity_id: switch.plug_hallway_tablet
action: switch.turn_on
- action: number.set_value
metadata: {}
data:
value: '25'
target:
entity_id: number.hallway_tablet_screen_brightness
- conditions:
- condition: numeric_state
entity_id: sensor.hallway_tablet_battery
above: 20
- condition: state
entity_id: binary_sensor.hallway_tablet_plugged_in
state: 'on'
sequence:
- action: number.set_value
metadata: {}
data:
value: '100'
target:
entity_id: number.hallway_tablet_screen_brightness
mode: single
- id: '1713574201448'
alias: Turn lights to white when we stop a movie
description: ''
trigger:
- platform: state
entity_id:
- media_player.universal_office_chromecast
- media_player.universal_livingroom_chromecast
- media_player.universal_hotbox_top_chromecast
- media_player.universal_hotbox_down_chromecast
- media_player.universal_patio_chromecast
to: 'off'
condition:
- condition: template
value_template: '{{ trigger.from_state.attributes.media_content_type == "movie"
}}'
- condition: template
value_template: '{{ not trigger.from_state.attributes.media_series_title }}'
action:
- repeat:
sequence:
- variables:
off_lights_in_room: '{{ [area_id(trigger.entity_id)] | map(''area_id'')
| map(''area_entities'') | sum(start=[]) | select(''match'', ''^light.'')
| select(''is_state'',''on'') | unique | list }}
'
entity_id: '{{ trigger.entity_id }}
'
trigger_full: '{{ trigger.to_state.attributes }}
'
- repeat:
sequence:
- service: light.turn_on
metadata: {}
data:
rgb_color:
- 255
- 255
- 255
brightness_pct: '100'
transition: 150
target:
entity_id: '{{ off_lights_in_room[repeat.index - 1 ] }}'
for_each: '{{off_lights_in_room}}'
enabled: true
count: 1
enabled: true
mode: restart
- id: '1713630060902'
alias: Raise lights to 60% brightness when a movie is paused and the brightness
is below 30%
description: ''
trigger:
- platform: state
entity_id:
- media_player.universal_office_chromecast
- media_player.universal_livingroom_chromecast
- media_player.universal_hotbox_top_chromecast
- media_player.universal_hotbox_down_chromecast
- media_player.universal_patio_chromecast
to: paused
from: playing
condition:
- condition: template
value_template: '{{ trigger.from_state.attributes.media_content_type == "movie"
}}'
- condition: template
value_template: '{{ not trigger.from_state.attributes.media_series_title }}'
action:
- repeat:
sequence:
- variables:
off_lights_in_room: '{{ [area_id(trigger.entity_id)] | map(''area_id'')
| map(''area_entities'') | sum(start=[]) | select(''match'', ''^light.'')
| select(''is_state'',''on'') | unique | list }}
'
entity_id: '{{ trigger.entity_id }}
'
trigger_full: '{{ trigger.to_state.attributes }}
'
- repeat:
sequence:
- if:
- condition: template
value_template: '
{{ state_attr(off_lights_in_room[repeat.index - 1 ], "brightness")
< 80 }}'
then:
- service: light.turn_on
metadata: {}
data:
brightness_pct: '60'
target:
entity_id: '{{ off_lights_in_room[repeat.index - 1 ] }}'
for_each: '{{off_lights_in_room}}'
enabled: true
count: 1
enabled: true
mode: parallel