diff --git a/README.md b/README.md index 882a3a00..7c14cec0 100755 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Software on the Pi : [Home Assistant](https://home-assistant.io/) , [Dasher](htt * (IFTTT) Blink Office lights 15 minutes before ANY meeting on my calendar (using IFTTT) * (IFTTT) Stop watering grass via Rachio if winds are greater than 20 MPH. * (IFTTT) Blink ALL lights if Winds get to 70MPH - Hurricance warning. +* Halloween Special - Flash all front lights when motion is detected via SkyBell (IFTTT - Maker) ![Screenshot of Home View](https://i.imgur.com/Exz32fr.png) ![Screenshot of Lights](https://i.imgur.com/rPm5wgJ.png) diff --git a/automation/halloween_flash.yaml b/automation/halloween_flasher.yaml similarity index 60% rename from automation/halloween_flash.yaml rename to automation/halloween_flasher.yaml index 55134f75..52fad433 100755 --- a/automation/halloween_flash.yaml +++ b/automation/halloween_flasher.yaml @@ -19,17 +19,26 @@ action: - service: light.turn_on -# entity_id: group.all_lights - entity_id: light.office_lamp + entity_id: group.halloween_flasher + data: + flash: long + - delay: 00:00:2 + - service: light.turn_on + entity_id: group.halloween_flasher + data: + flash: long + - delay: 00:00:2 + - service: light.turn_on + entity_id: group.halloween_flasher + data: + flash: long + - delay: 00:00:3 + - service: light.turn_on + entity_id: group.halloween_flasher data: flash: long - delay: 00:00:5 - service: light.turn_on - entity_id: light.office_lamp - data: - flash: long - - delay: 00:00:5 - - service: light.turn_on - entity_id: light.office_lamp + entity_id: group.halloween_flasher data: flash: long \ No newline at end of file diff --git a/group/holiday.yaml b/group/holiday.yaml index 4d754e59..689bbe89 100755 --- a/group/holiday.yaml +++ b/group/holiday.yaml @@ -3,11 +3,23 @@ Holiday: - switch.halloween_lights_den - switch.halloween_lights_dining_room - switch.pumpkin_lights - - - + ######################################### ### Pumpkin lights used in ### ### holiday / late night helper & ### ### Good_night ### ######################################### + +Halloween_Flasher: + entities: + - light.couch_1 + - light.couch_2 + - light.couch_tv + - light.den_lamp + - light.foyer_door + - light.foyer + - light.office_lamp + - light.sconce_1 + - light.sconce_2 + - light.sconce_3 + - light.sconce_4 \ No newline at end of file