Code:
alias: Warmwasser_Urlaub_40Grad
description: ""
trigger:
- platform: numeric_state
entity_id: sensor.export_power
attribute: Watt
above: 3000
condition: and
conditions:
- condition: state
entity_id: input_boolean.warmwasser_urlaubsschaltung
state: "on"
- condition: time
after: input_datetime.urlaub_start
- condition: time
before: input_datetime.urlaub_ende
- condition: numeric_state
entity_id: sensor.hotwater_temp
below: 40
action:
- type: turn_on
device_id: cf031dc3f595ef587da55c933313f4d4
entity_id: 41d4fc51f898cd80831fd9c74880fd35
domain: switch
mode: single
Ich denke, so sollte es funktionieren.
das "condition: and" leitet wohl ein, das die folgenden Bedingungen unter "conditions" (beachte das zusätziche s) UND Verknüpft werden. Also nur wenn alle 3 zutreffen, wird die Aktion ausgeführt.
Hier kannst Du auch nachlesen, wie man UND/ODER zusammen machen kann.