Hi guys,
I have an issue with an automation I try to get up and running.
I have a fan which should run from 8 a.m. till 23 p.m. every 3 hours for 1.5 hours.
I can start it manually but it just run for 1.5 hours and that’s it. Maybe you can give me a tip:
alias: //Climate// Lüftung HWR
trigger:
- hours: /3
minutes: ''
platform: time_pattern
seconds: ''
condition:
- after: 08:00:00
before: '23:00:00'
condition: time
action:
- data:
entity_id: switch.lufter_hwr
service: switch.turn_on
- delay: 01:30:00
- data:
entity_id: switch.lufter_hwr
service: switch.turn_off