You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.7 KiB

######################################################################
# @CCOSTAN - Follow Me on X
# For more info visit https://www.vcloudinfo.com/click-here
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
# -------------------------------------------------------------------
# Emergency Script Configuration - This script activates emergency lighting and effects.
# Defines the Emergency Script Configuration sequence for reuse by automations and dashboards.
# -------------------------------------------------------------------
# Notes: This script activates emergency lighting and effects
# Notes: when triggered, including turning front lights to red,
# Notes: flashing all lights, and activating strobe effects
# Notes: Usage:
# Notes: service: script.emergency
######################################################################
emergency:
sequence:
# Switch all outside front lights to Red to indicate emergency
- service: light.turn_on
entity_id:
- light.outdoor_front_lights
data:
#color_name: 'red'
rgb_color: [255,0,0]
# Flash All LIGHTS
- service: light.turn_on
entity_id: all
data:
flash: long
# Rachio is already inergrated Natively with Protects to run SPRINKLERS with smoke conditions..
# - service: ifttt.trigger
# data: {"event":"rachio_start_front"}
# Turn on All LIGHTS 100% Brightness
- service: light.turn_on
entity_id: all
data:
brightness: 255
# Turn on Outside LED lights strobing White
- service: light.turn_on
entity_id:
- light.led_garage_large
- light.led_garage_small
- light.led_outdoor_den
- light.led_garage_snip
data:
effect: white_strobe

Powered by TurnKey Linux.