mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-21 00:25:12 +00:00
26 lines
974 B
YAML
Executable File
26 lines
974 B
YAML
Executable File
######################################################################################################
|
|
###Script to turn on scene for the appropriate month for the front of the house but only when the sun is down.
|
|
# action:
|
|
# - service: script.monthly_front_house_scene
|
|
#
|
|
# scenes should be named month_front_[01-12]_colors (month_front_06_colors)
|
|
######################################################################################################
|
|
|
|
monthly_front_house_scene:
|
|
sequence:
|
|
- condition: state
|
|
entity_id: sun.sun
|
|
state: 'below_horizon'
|
|
- condition: state
|
|
entity_id: input_boolean.alert_mode
|
|
state: 'off'
|
|
|
|
- service: logbook.log
|
|
data_template:
|
|
name: "Launching Scene:"
|
|
message: "scene.month_front_{{ states('sensor.date').split('-')[1] }}_colors"
|
|
|
|
- service: scene.turn_on
|
|
data_template:
|
|
entity_id: "scene.month_front_{{ states('sensor.date').split('-')[1] }}_colors"
|
|
|