diff --git a/automation/ifttt_SkyBellHD.yaml b/automation/ifttt_SkyBellHD.yaml index e2cdadec..98becbed 100755 --- a/automation/ifttt_SkyBellHD.yaml +++ b/automation/ifttt_SkyBellHD.yaml @@ -9,10 +9,7 @@ event_type: skybell_pressed action: - - service: logbook.log - data: - name: "SkyBell HD Doorbell:" - message: "Someone Pressed the Doorbell." + - service: script.skybell_pressed ###################################################################### diff --git a/script/skybell_pressed.yaml b/script/skybell_pressed.yaml new file mode 100755 index 00000000..5ba7737d --- /dev/null +++ b/script/skybell_pressed.yaml @@ -0,0 +1,24 @@ +###################################################################################################### +###Script to turn on Front light FULL bright for 15m when motion is detected and then return to the normal colors. +# action: +# - service: script.front_house_motion +# +###################################################################################################### + +front_house_motion: + sequence: + - service: logbook.log + data: + name: "SkyBell HD Doorbell:" + message: "Someone Pressed the Doorbell." + + - service: light.turn_on + entity_id: + - group.outdoor_pool_lights + - light.master_toilet + data: + flash: short + + + + \ No newline at end of file