Ikea Rodret Button - Automation Not Fully Working

Hi

I have an automation using the Control anything with IKEA RODRET Dimmer remote (v1.2) Blueprint where on Button On press, I am trying to turn on a switch, wait for 30 minutes and then turn it off. Or, if Button Off is pressed then immediately turn off the switch. It’s a boost button for Oil heating boiler. The On Button Press seems to be working OK but the Off Button Press doesn’t do anything.

I had some issues paring the Rodret to the Sonoff Coordinator and couldn’t manage to get it installed properly, stayed in configure loop but I paired it to a Hue Bulb in the same room instead and it seemed to configure OK - battery isn’t reporting but all button presses are.

See YAML below - Any noticeable issues here that you can see? If I run the automation manually all seems to be OK but the Button Off press doesn’t seem to trigger the automation at all (the logs do say the button was pressed though?)

alias: "Heating: Boost Button On/Off"
description: Turn/Off Heating for 30 Minutes
use_blueprint:
  path: damru/ikea-rodret_E2201_ZHA-Z2M_control-anything.yaml
  input:
    remote_device: 051d2a17b752e894ed946405b75d026c
    on_press_action:
      - service: climate.set_temperature
        metadata: {}
        data:
          temperature: 25
        target:
          entity_id: climate.living_room
      - delay:
          hours: 0
          minutes: 30
          seconds: 0
          milliseconds: 0
      - service: climate.set_temperature
        metadata: {}
        data:
          temperature: 19
        target:
          entity_id: climate.living_room
      - type: turn_off
        device_id: 0b04a55bca7d0c3cf310c52f3868fba7
        entity_id: 2910695b1e1a0f4e70a24187f22a528b
        domain: switch
    off_press_action:
      - type: turn_off
        device_id: 0b04a55bca7d0c3cf310c52f3868fba7
        entity_id: 2910695b1e1a0f4e70a24187f22a528b
        domain: switch
      - service: climate.set_temperature
        metadata: {}
        data:
          temperature: 19
        target:
          entity_id: climate.living_room

Trace is below also if this helps

Thanks for your help.

Anyone able to help here? I asked Chat GPT and the response was to remove the YAML turning the switch off and only use the set temp to 19 but that doesn’t work either. Thanks