mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-20 16:21:58 +00:00
14 lines
617 B
YAML
14 lines
617 B
YAML
|
######################################################################################################
|
||
|
###Script to turn on scene for the appropriate month for the front of the house.
|
||
|
# action:
|
||
|
# - service: script.monthly_front_house_scene
|
||
|
#
|
||
|
# scenes should be named month_front_[1-12]_colors (month_front_6_colors)
|
||
|
######################################################################################################
|
||
|
|
||
|
monthly_front_house_scene:
|
||
|
sequence:
|
||
|
- service: scene.turn_on
|
||
|
data_template:
|
||
|
entity_id: "scene.month_front_{{ states('sensor.date').split('-')[1] }}_colors"
|
||
|
|