I have an automation that looks like this (truncated for clarity):
alias: climate_lueftung_kueche
description: ""
triggers:
(some stuff)
conditions: []
actions:
- if:
- condition: and
conditions:
- condition: state
entity_id: binary_sensor.terrassentur_kuche_offen
state: "off"
- condition: state
entity_id: binary_sensor.fenster_kuche_offen
state: "off"
then:
(do stuff)
else:
(do other stuff)
What else can go in the condition stanza? could I have a - condition: or instead? What else would work? Is there an nand? nor? xor?