ja de entity naam heb ik aangepast. zie die ook terug in developerTeslaNerd schreef op dinsdag 13 januari 2026 @ 13:32:
[...]
Welke commando’s gebruik jij voor het aansturen van de thermostaat via een automation?
autmation is:
alias: Automation_Thermostaat_Plus_01
description: Stelt de thermostaat in op basis van de temperatuur sensor.
triggers:
- minutes: /2
trigger: time_pattern
conditions:
- condition: state
entity_id: input_boolean.sswitch_automation_temperature_plus_01 # dit is gecreerde switch
state: "on"
actions:
- target:
entity_id:
- climate.thermostat
data:
temperature: |
{% if states('sensor.thermostat_auto_setpoint_0_1') | float < 17.5 %}
17.5
{% elif states('sensor.thermostat_auto_setpoint_0_1') | float > 20 %}
20
{% else %}
{{ states('sensor.thermostat_auto_setpoint_0_1') }}
{% endif %}
action: climate.set_temperature
mode: single
de helper sensor.thermostat_auto_setpoint_0_1 = quatt room set point plus 0.1