Skip to content

Automation Examples

Zac edited this page Sep 8, 2022 · 2 revisions

Documenting a few examples for automating specific things.

Touchdown For Your Team

alias: Automation - Touchdown
trigger:
  - platform: state
    entity_id: sensor.football
    attribute: team_score
condition:
  - condition: template
    value_template: >-
      {{ trigger.to_state.attributes.team_score | int >
      (trigger.from_state.attributes.team_score | int + 5) }}
action:
  - your-action-here
Clone this wiki locally