#Cover template suddenly doing weird

1 messages · Page 1 of 1 (latest)

manic coral
#

Since I think updating to 2025.10 my cover template is not working as it was. I tried some things and later on via chatgpt (sorry) but I cannot find why it doe not work anymore. The problem is that when the cover (template) is open and I send a cover.open_cover it closes it... this is my template:

- platform: template covers: tuin_voor_poort_cover: device_class: gate friendly_name: "Tuin Poort" unique_id: tuin_voor_poort_cover value_template: "{{ is_state('binary_sensor.door_windows_sensor_blauwe_hekje', 'on') }}" open_cover: service: > {% if is_state('binary_sensor.door_windows_sensor_blauwe_hekje', 'off') %} script.pulse_open_gate {% else %} script.do_nothing {% endif %} close_cover: service: > {% if is_state('binary_sensor.door_windows_sensor_blauwe_hekje', 'on') %} script.pulse_close_gate {% else %} script.do_nothing {% endif %}

opaque gust