Hi,
I’m using an automation to set the temperature for my central heating via opentherm-gateway. During the day I want to have a gradually increasing temperature, so the automation (at the bottom) runs every hour and increments the temperature with 0.1 degree.
What I actually see happening is that after every time I set the temperature via the automation, the actual setpoint (yellow line in picture below) jumps to the setpoint (always 19 degrees) on the thermostat and then goes back to that value I set via the automation.
This causes my boiler to shut-down and start-up every hour (orange part in picture) which probably isn’t very good.
Can this behaviour be changed ? e.g. are there some settings I can do or check to prevent these spikes on the setpoint ?
action:
- service: climate.set_temperature
data:
temperature: "{{ states('input_number.verwarming_setpoint') | float + (now().hour - 5)/10 }}"
target:
entity_id: climate.verwarming
