Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Automation Examples

Thomas55555 edited this page Jun 24, 2023 · 1 revision

Let your mower only mow during daytime to protect wildlife. Schedule is updated daily.

- alias: Automower_set_schedule
  id: "enklfjf76"
  description: "Mow from dawn till dusk"
  trigger:
    - platform: time
      at: "23:58"
  action:
    service: husqvarna_automower.calendar
    data:
      start: '{{ states("sensor.sun_next_rising") | as_timestamp| timestamp_custom("%H:%M") }}'
      end: '{{ states("sensor.sun_next_setting") | as_timestamp| timestamp_custom("%H:%M") }}'
      monday: true
      tuesday: true
      wednesday: true
      thursday: true
      friday: true
      saturday: true
      sunday: true
    target:
      entity_id: vacuum.haffi
Clone this wiki locally