mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-10 11:00:14 -04:00
20 lines
541 B
YAML
20 lines
541 B
YAML
alias: "Season is Easter"
|
|
id: automation_season_is_easter
|
|
initial_state: "on"
|
|
trigger:
|
|
- platform: homeassistant
|
|
event: start
|
|
- platform: time
|
|
at: "02:00:00"
|
|
- platform: state
|
|
entity_id: calendar.holidays_in_united_states
|
|
to: "on"
|
|
condition:
|
|
- condition: template
|
|
value_template: '{{ states.calendar.holidays_in_united_states.attributes.message in "Good Friday" "Easter Sunday" "Easter Monday" }}'
|
|
action:
|
|
- action: input_select.select_option
|
|
data:
|
|
entity_id: input_select.season
|
|
option: Easter
|