mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
20 lines
542 B
YAML
20 lines
542 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:
|
|
- service: input_select.select_option
|
|
data:
|
|
entity_id: input_select.season
|
|
option: Easter
|