New to HA, just wanting to make sure I'm understanding this right...
So, in theory, this should trigger at 08:15, 09:15, and 10:15, unless a device assigned to 'Sam' or 'Gabriel' is in the 'Home' zone.
The main thing I'm concerned about is the NOT condition, if II need to be using an OR condition within it for the @home conditions or not.
description: ""
mode: single
triggers:
- trigger: time_pattern
hours: /1
minutes: "15"
alias: Time @ Hour:15
conditions:
- alias: AND
condition: and
conditions:
- condition: time
after: "08:00:00"
before: "11:00:00"
alias: Time @ 0800-1100
- alias: NOT
condition: not
conditions:
- condition: zone
entity_id: person.sam
zone: zone.home
alias: Sam @ Home
- condition: zone
entity_id: person.gabriel
zone: zone.home
alias: Gabriel @ Home
actions: []