-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathautomations.yaml
3074 lines (2926 loc) · 93.8 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
# _ _ _
# /\ | | | | (_)
# / \ _ _| |_ ___ _ __ ___ __ _| |_ _ ___ _ __
# / /\ \| | | | __/ _ \| '_ ` _ \ / _` | __| |/ _ \| '_ \
# / ____ \ |_| | || (_) | | | | | | (_| | |_| | (_) | | | |
# /_/ \_\__,_|\__\___/|_| |_| |_|\__,_|\__|_|\___/|_| |_|
# https://www.home-assistant.io/components/automation/
# https://www.home-assistant.io/docs/automation/examples/
# https://www.home-assistant.io/cookbook/
# __ _ _ _____ _
# /_/ | (_) | __ \| |
# / \ _ _ __| |_ ___ | |__) | | __ _ _ _ ___ _ __
# / _ \| | | |/ _` | |/ _ \ | ___/| |/ _` | | | |/ _ \ '__|
# / ___ \ |_| | (_| | | (_) | | | | | (_| | |_| | __/ |
# /_/ \_\__,_|\__,_|_|\___/ |_| |_|\__,_|\__, |\___|_|
# __/ |
# |___/
# Controle do volume
- alias: Ajusta Volume do Player de Audio
initial_state: true
trigger:
- platform: state
entity_id: input_number.audio_volume
action:
- service: media_player.volume_set
data_template:
entity_id: >
{% if is_state("input_select.src_cast_audio", "Google Home Quarto") %} media_player.google_home
{% elif is_state("input_select.src_cast_audio", "Google Home Sala") %} media_player.google_home_sala
{% elif is_state("input_select.src_cast_audio", "Todos Google Homes") %} media_player.todos_google_homes
{% elif is_state("input_select.src_cast_audio", "Chromecast Tv Sala") %} media_player.tv_da_sala
{% elif is_state("input_select.src_cast_audio", "Chromecast Tv Quarto") %} media_player.tv_do_quarto
{% endif %}
volume_level: '{{ states.input_number.audio_volume.state }}'
# __ ____ _ _____ _
# \ \ / /_/ | | | __ \| |
# \ \ / / _ __| | ___ ___ | |__) | | __ _ _ _ ___ _ __
# \ \/ / | |/ _` |/ _ \/ _ \ | ___/| |/ _` | | | |/ _ \ '__|
# \ / | | (_| | __/ (_) | | | | | (_| | |_| | __/ |
# \/ |_|\__,_|\___|\___/ |_| |_|\__,_|\__, |\___|_|
# __/ |
# |___/
# Controle do volume
- alias: Ajusta Volume do Player de Video
initial_state: true
trigger:
- platform: state
entity_id: input_number.video_volume
action:
- service: media_player.volume_set
data_template:
entity_id: >
{% if is_state("input_select.src_cast_video", "Quarto") %} media_player.tv_do_quarto
{% elif is_state("input_select.src_cast_video", "Sala") %} media_player.tv_da_sala
{% endif %}
volume_level: '{{ states.input_number.video_volume.state }}'
- alias: Ajusta Volume do Player Streaming
initial_state: true
trigger:
- platform: state
entity_id: input_number.volume_media_extractor
action:
- service: media_player.volume_set
data_template:
entity_id: >
{% if is_state("input_select.src_cast_video", "Quarto") %} media_player.google_home
{% elif is_state("input_select.src_cast_video", "Sala") %} media_player.google_home_sala
{% endif %}
volume_level: '{{ states.input_number.volume_media_extractor.state }}'
# _____ _ _ ______ _
# | __ \ | | | | | ____| | |
# | |__) |___ _ __ _____ ____ _ | | ___| |_ ___ | |__ _ __ ___ _ __ _ _ _ __ | |_
# | _ // _ \ '_ \ / _ \ \ / / _` | | | / _ \ __/ __| | __| | '_ \ / __| '__| | | | '_ \| __|
# | | \ \ __/ | | | (_) \ V / (_| | | |___| __/ |_\__ \ | |____| | | | (__| | | |_| | |_) | |_
# |_| \_\___|_| |_|\___/ \_/ \__,_| |______\___|\__|___/ |______|_| |_|\___|_| \__, | .__/ \__|
# |___/|_|
- id: letsencrypt-renewal
initial_state: true
alias: "Renova Let's Encrypt"
trigger:
- platform: time
at: '00:00:00'
action:
- service: hassio.addon_restart
data:
addon: core_letsencrypt
# _____ _ _ __ __
# / ____| | | | | \ \ /_ |
# | | ___ _ __ | |_ _ __ ___ | | ___ _____\ \ | |
# | | / _ \| '_ \| __| '__/ _ \| |/ _ \ |______> > | |
# | |___| (_) | | | | |_| | | (_) | | __/ / / | |
# \_____\___/|_| |_|\__|_| \___/|_|\___| /_/ |_|
#
# BOTAO ARMAR
- alias: Controle (1) - Armar
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c1_armar
from: 'off'
to: 'on'
action:
- service: switch.turn_on
data:
entity_id: switch.seguranca_casa
# BOTAO DESARMAR
- alias: Controle (1) - Desarmar
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c1_desarmar
from: 'off'
to: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.seguranca_casa
# HOME (Liga luz Poste se estiver off)
- alias: Controle (1) - Bt Home (Liga Poste)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c1_home
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'off'
action:
- service: light.turn_on
data:
entity_id:
- light.luz_dos_postes
- light.luz_da_area_da_piscina
# HOME (Desliga luz Poste se estiver on)
- alias: Controle (1) - Bt Home (Desligar Poste)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c1_home
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'on'
action:
- service: light.turn_off
data:
entity_id:
- light.luz_dos_postes
- light.luz_da_area_da_piscina
# SOS (Liga luz pendentes se estiver off)
- alias: Controle (1) - Bt SOS (Liga QM)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c1_sos
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_pendentes
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_pendentes
# SOS (Desliga luz pendentes se estiver on)
- alias: Controle (1) - Bt SOS (Desligar QM)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c1_sos
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_pendentes
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_pendentes
# _____ _ _ __ ___
# / ____| | | | | \ \ |__ \
# | | ___ _ __ | |_ _ __ ___ | | ___ _____\ \ ) |
# | | / _ \| '_ \| __| '__/ _ \| |/ _ \ |______> > / /
# | |___| (_) | | | | |_| | | (_) | | __/ / / / /_
# \_____\___/|_| |_|\__|_| \___/|_|\___| /_/ |____|
#
# ARMAR
- alias: Controle (2) - Armar
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c2_armar
from: 'off'
to: 'on'
action:
- service: switch.turn_on
data:
entity_id: switch.seguranca_casa
# DESARMAR
- alias: Controle (2) - Desarmar
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c2_desarmar
from: 'off'
to: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.seguranca_casa
# HOME ( SEM FUNCAO)
- alias: Controle (2) - Btn Home
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c2_home
from: 'off'
to: 'on'
action:
- service: notify.telegramrudi
data:
message: Botão Home pressinado em controle 2.
- service_template: >
{% if is_state("input_select.padrao_tts", "Google") %} tts.google_translate_say
{% elif is_state("input_select.padrao_tts", "Voicerss") %} tts.voicerss_say
{% elif is_state("input_select.padrao_tts", "Watson") %} tts.watson_tts_say
{% elif is_state("input_select.padrao_tts", "Amazon") %} tts.amazon_polly_say
{% endif %}
data_template:
entity_id: media_player.todos_google_homes
message: Home pressinado em controle 2.
# SOS ( SEM FUNCAO)
- alias: Controle (2) - Btn SOS
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c2_sos
from: 'off'
to: 'on'
action:
- service: notify.telegramrudi
data:
message: Botão SOS pressinado em controle 2.
- service_template: >
{% if is_state("input_select.padrao_tts", "Google") %} tts.google_translate_say
{% elif is_state("input_select.padrao_tts", "Voicerss") %} tts.voicerss_say
{% elif is_state("input_select.padrao_tts", "Watson") %} tts.watson_tts_say
{% elif is_state("input_select.padrao_tts", "Amazon") %} tts.amazon_polly_say
{% endif %}
data_template:
entity_id: media_player.todos_google_homes
message: SOS pressinado em controle 2.
# _____ _ _ __ ____
# / ____| | | | | \ \ |___ \
# | | ___ _ __ | |_ _ __ ___ | | ___ _____\ \ __) |
# | | / _ \| '_ \| __| '__/ _ \| |/ _ \ |______> > |__ <
# | |___| (_) | | | | |_| | | (_) | | __/ / / ___) |
# \_____\___/|_| |_|\__|_| \___/|_|\___| /_/ |____/
#
# ARMAR
- alias: Controle (3) - Armar
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c3_armar
from: 'off'
to: 'on'
action:
- service: switch.turn_on
data:
entity_id: switch.seguranca_casa
# DESARMAR
- alias: Controle (3) - Desarmar
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c3_desarmar
from: 'off'
to: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.seguranca_casa
# HOME (Liga luz do Abajur se estiver off)
- alias: Controle (3) - Bt Home (Liga abajur)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c3_home
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.yeelight_color1_7c49eb15924b
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.yeelight_color1_7c49eb15924b
transition: 3
# HOME (Desliga luz do Abajur se estiver on)
- alias: Controle (3) - Bt Home (Desligar abajur)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c3_home
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.yeelight_color1_7c49eb15924b
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.yeelight_color1_7c49eb15924b
transition: 3
# SOS (Liga luz do postes se estiver off)
- alias: Controle (3) - SOS Home (Liga Postes)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c3_sos
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'off'
action:
- service: light.turn_on
data:
entity_id:
- light.luz_dos_postes
- light.luz_da_area_da_piscina
# SOS (Desliga luz do postes se estiver on)
- alias: Controle (3) - Bt SOS (Desligar Postes)
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.c3_sos
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'on'
action:
- service: light.turn_off
data:
entity_id:
- light.luz_dos_postes
- light.luz_da_area_da_piscina
# _____ _ _ _ _ ____ ____ __ __ _
# |_ _| | | | | | || ||___ \___ \| \/ | |
# | | _ __ | |_ ___ _ __ _ __ _ _ _ __ | |_ ___ _ __ ___ ___ | || |_ __) |__) | \ / | |__ ____
# | | | '_ \| __/ _ \ '__| '__| | | | '_ \| __/ _ \| '__/ _ \/ __| |__ _|__ <|__ <| |\/| | '_ \|_ /
# _| |_| | | | || __/ | | | | |_| | |_) | || (_) | | | __/\__ \ | | ___) |__) | | | | | | |/ /
# |_____|_| |_|\__\___|_| |_| \__,_| .__/ \__\___/|_| \___||___/ |_||____/____/|_| |_|_| |_/___|
# |_|
# Cozinha - 2 Teclas
- alias: RF1 Cozinha On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_coz
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_da_pia
state: 'off'
action:
- service: light.turn_on
data:
entity_id:
- light.luz_da_pia
- alias: RF1 Cozinha Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_coz
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_da_pia
state: 'on'
action:
- service: light.turn_off
data:
entity_id:
- light.luz_da_pia
- alias: RF2 Cozinha On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_coz
from: 'off'
to: 'on'
condition:
condition: state
entity_id: switch.pressurizador
state: 'off'
action:
- service: switch.turn_on
data:
entity_id: switch.pressurizador
- alias: RF2 Cozinha Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_coz
from: 'off'
to: 'on'
condition:
condition: state
entity_id: switch.pressurizador
state: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.pressurizador
- alias: RF1e2 Cozinha On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e2_interruptor_coz
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_da_cozinha
state: 'off'
action:
- service: light.turn_on
data:
entity_id:
- light.luz_da_cozinha
- alias: RF1e2 Cozinha Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e2_interruptor_coz
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_da_cozinha
state: 'on'
action:
- service: light.turn_off
data:
entity_id:
- light.luz_da_cozinha
#Banheiro da Suite - 2 Teclas
- alias: RF1 Banheiro Suite On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_bsu
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_banheiro_da_suite
state: 'off'
action:
- service: light.turn_on
data:
entity_id:
- light.luz_do_banheiro_da_suite
- alias: RF1 Banheiro Suite Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_bsu
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_banheiro_da_suite
state: 'on'
action:
- service: light.turn_off
data:
entity_id:
- light.luz_do_banheiro_da_suite
- alias: RF2 Banheiro Suite On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_bsu
from: 'off'
to: 'on'
condition:
condition: state
entity_id: switch.pressurizador
state: 'off'
action:
- service: switch.turn_on
data:
entity_id: switch.pressurizador
- alias: RF2 Banheiro Suite Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_bsu
from: 'off'
to: 'on'
condition:
condition: state
entity_id: switch.pressurizador
state: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.pressurizador
- alias: RF1e2 Banheiro Suite SOS
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e2_interruptor_bsu
from: 'off'
to: 'on'
action:
- service: notify.telegramtodos
data:
message: "Alguém precisa de ajuda no banheiro da suíte!"
- service: media_player.volume_set
data_template:
entity_id: media_player.google_home_sala
volume_level: 0.9
- service: media_player.volume_set
data_template:
entity_id: media_player.google_home
volume_level: 0.9
- service_template: >
{% if is_state("input_select.padrao_tts", "Google") %} tts.google_translate_say
{% elif is_state("input_select.padrao_tts", "Voicerss") %} tts.voicerss_say
{% elif is_state("input_select.padrao_tts", "Watson") %} tts.watson_tts_say
{% elif is_state("input_select.padrao_tts", "Amazon") %} tts.amazon_polly_say
{% endif %}
data_template:
entity_id: media_player.todos_google_homes
message: "Alguém precisa de ajuda no banheiro da suíte! Só pode que esqueceu a toalha ou ficou sem papel!"
#Banheiro Social - 2 Teclas
- alias: RF1 Banheiro Social On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_bso
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_banheiro_social
state: 'off'
action:
- service: light.turn_on
data:
entity_id:
- light.luz_do_banheiro_social
- alias: RF1 Banheiro Social Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_bso
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_banheiro_social
state: 'on'
action:
- service: light.turn_off
data:
entity_id:
- light.luz_do_banheiro_social
- alias: RF2 Banheiro Social On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_bso
from: 'off'
to: 'on'
condition:
condition: state
entity_id: switch.pressurizador
state: 'off'
action:
- service: switch.turn_on
data:
entity_id: switch.pressurizador
- alias: RF2 Banheiro Social Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_bso
from: 'off'
to: 'on'
condition:
condition: state
entity_id: switch.pressurizador
state: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.pressurizador
- alias: RF1e2 Banheiro Social SOS
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e2_interruptor_bso
from: 'off'
to: 'on'
action:
- service: notify.telegramtodos
data:
message: "Alguém precisa de ajuda no banheiro social!"
- service: media_player.volume_set
data_template:
entity_id: media_player.google_home_sala
volume_level: 0.9
- service: media_player.volume_set
data_template:
entity_id: media_player.google_home
volume_level: 0.9
- service_template: >
{% if is_state("input_select.padrao_tts", "Google") %} tts.google_translate_say
{% elif is_state("input_select.padrao_tts", "Voicerss") %} tts.voicerss_say
{% elif is_state("input_select.padrao_tts", "Watson") %} tts.watson_tts_say
{% elif is_state("input_select.padrao_tts", "Amazon") %} tts.amazon_polly_say
{% endif %}
data_template:
entity_id: media_player.todos_google_homes
message: "Alguém precisa de ajuda no banheiro social! Só pode que esqueceu a toalha ou ficou sem papel!"
# Quarto da Suite - 3 teclas
- alias: RF1 Interruptor Suite On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_da_suite
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_da_suite
- alias: RF1 Interruptor Suite Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_da_suite
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_da_suite
- alias: RF2 Interruptor Suite On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.yeelight_color1_7c49eb15924b
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.yeelight_color1_7c49eb15924b
transition: 5
- alias: RF2 Interruptor Suite Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.yeelight_color1_7c49eb15924b
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.yeelight_color1_7c49eb15924b
transition: 5
- alias: RF3 Interruptor Suite On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf3_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_banheiro_da_suite
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_do_banheiro_da_suite
- alias: RF3 Interruptor Suite Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf3_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_banheiro_da_suite
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_do_banheiro_da_suite
- alias: RF1e3 Interruptor Suite On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e3_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_dos_postes
- alias: RF1e3 Interruptor Suite Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e3_interruptor_suite
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_dos_postes
- alias: RF1e2 Interruptor Suite On Alarme
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e2_interruptor_suite
from: 'off'
to: 'on'
action:
- service: switch.turn_on
data:
entity_id: switch.seguranca_casa
- alias: RF2e3 Interruptor Suite Off Alarme
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2e3_interruptor_suite
from: 'off'
to: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.seguranca_casa
# Quarto da Q Frente - 3 teclas
# ON - light.luz_do_quarto_da_frente
- alias: RF1 Interruptor Q Frente On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_quarto_da_frente
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_do_quarto_da_frente
# OFF - light.luz_do_quarto_da_frente
- alias: RF1 Interruptor Q Frente Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_quarto_da_frente
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_do_quarto_da_frente
# ON - light.luz_do_corredor
- alias: RF2 Interruptor Q Frente On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_corredor
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_do_corredor
transition: 5
# OFF - light.luz_do_corredor
- alias: RF2 Interruptor Q Frente Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_corredor
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_do_corredor
transition: 5
# ON - light.luz_do_banheiro_social
- alias: RF3 Interruptor Q Frente On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf3_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_quarto_da_frente
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_do_quarto_da_frente
# OFF - light.luz_do_banheiro_social
- alias: RF3 Interruptor Q Frente Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf3_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_quarto_da_frente
state: 'on'
action:
- service: light.turn_off
data:
entity_id: light.luz_do_quarto_da_frente
- alias: RF1e3 Interruptor Q Frente SOS
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e3_interruptor_quarto_frente
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_dos_postes
state: 'off'
action:
- service: notify.telegramtodos
data:
message: "Alguém precisa de ajuda no quarto da frente!"
- service: media_player.volume_set
data_template:
entity_id: media_player.google_home_sala
volume_level: 0.9
- service: media_player.volume_set
data_template:
entity_id: media_player.google_home
volume_level: 0.9
- service_template: >
{% if is_state("input_select.padrao_tts", "Google") %} tts.google_translate_say
{% elif is_state("input_select.padrao_tts", "Voicerss") %} tts.voicerss_say
{% elif is_state("input_select.padrao_tts", "Watson") %} tts.watson_tts_say
{% elif is_state("input_select.padrao_tts", "Amazon") %} tts.amazon_polly_say
{% endif %}
data_template:
entity_id: media_player.todos_google_homes
message: "Alguém precisa de ajuda no quarto da frente!"
- alias: RF1e2 Interruptor Q Frente On Alarme
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1e2_interruptor_quarto_frente
from: 'off'
to: 'on'
action:
- service: switch.turn_on
data:
entity_id: switch.seguranca_casa
- alias: RF2e3 Interruptor Q Frente Off Alarme
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf2e3_interruptor_quarto_frente
from: 'off'
to: 'on'
action:
- service: switch.turn_off
data:
entity_id: switch.seguranca_casa
# Quarto da Q Meio - 3 teclas
- alias: RF1 Interruptor Q Meio On
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_quarto_meio
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_quarto_do_meio
state: 'off'
action:
- service: light.turn_on
data:
entity_id: light.luz_do_quarto_do_meio
- alias: RF1 Interruptor Q Meio Off
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.rf1_interruptor_quarto_meio
from: 'off'
to: 'on'
condition:
condition: state
entity_id: light.luz_do_quarto_do_meio
state: 'on'
action:
- service: light.turn_off