Hallo,
ich bräuchte mal bitte etwas Hilfe bei meiner Taupunktsteuerung…
Ich habe einen Kellerraum, der smart gelüftet werden soll. Am Fenster ist ein elektrischer Fenster Öffner und ein Fensterkontakt verbaut. In diesem Raum ist auch ein Temperatur/Feuchte Sensor installiert.
Die Automation wird nicht getriggert, ich kann das manuell anstoßen, dann öffnet das Fenster auch.
Das Schließen funktioniert per Automation…
Ich poste mal den Code mit der Bitte um Hilfe…
YAML zum Öffnen:
alias: Taupunktsteuerung Kellerfenster oeffnen
description: ""
triggers:
- trigger: numeric_state
entity_id:
- sensor.taupunkt_differenz_keller_filter
for:
hours: 0
minutes: 15
seconds: 0
above: 2
enabled: true
conditions:
- condition: and
conditions:
- type: is_not_open
condition: device
device_id: 5c547d589344e1e20dd33332450423b6
entity_id: 88bcc1ef85c677b8b0076365798c845d
domain: binary_sensor
enabled: true
- condition: numeric_state
entity_id: sensor.temperature_14
below: 24
enabled: true
- condition: numeric_state
entity_id: sensor.temperature_11
above: 13.5
enabled: true
actions:
- metadata: {}
data: {}
target:
entity_id: cover.taupunktsteuerung
action: cover.open_cover
- action: notify.mobile_app_grapheneos_pixel_6a
metadata: {}
data:
message: Kellerfenster geöffnet
mode: single
YAML zum Schließen:
alias: Taupunktsteuerung Kellerfenster schließen
description: ""
triggers:
- entity_id:
- sensor.taupunkt_differenz_keller_filter
for:
hours: 0
minutes: 15
seconds: 0
below: 1
trigger: numeric_state
- entity_id:
- sensor.temperature_14
above: 24
for:
hours: 0
minutes: 15
seconds: 0
trigger: numeric_state
- entity_id:
- sensor.temperature_11
for:
hours: 0
minutes: 15
seconds: 0
trigger: numeric_state
below: 13
conditions:
- type: is_open
condition: device
device_id: 5c547d589344e1e20dd33332450423b6
entity_id: 88bcc1ef85c677b8b0076365798c845d
domain: binary_sensor
enabled: true
actions:
- target:
entity_id:
- cover.taupunktsteuerung
data: {}
action: cover.close_cover
- action: notify.mobile_app_grapheneos_pixel_6a
metadata: {}
data:
message: Kellerfenster geschlossen
mode: single
Grüße