Automation with opentherm gateway

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

¯\(ツ)/¯ Sounds like you are looking for…

Hi Sir,
thanks for your pointers but I wonder if that is the place to go. The issue that I see seems more related to the combination from thermostat <=> otgw <=> boiler.
So I was more looking for some pointers on how to debug these connections or behavior. I guess my question better could have gone to the support forum of otgw instead of here, don’t think HA is the culprit here, I’ll close this thread.