Scene not working cover

hi
I have 3 scenes for the cover.
The open and closed are working, but stop doesn’t work

  • name: Open Kitchen cover
    entities:
    cover.kitchen_shutter:
    state: ‘open’

  • name: Close Kitchen cover
    entities:
    cover.kitchen_shutter:
    state: ‘closed’

  • name: stop Kitchen cover
    entities:
    cover.kitchen_shutter:
    state: ‘stop’

when i call the service “cover.stop_cover” its working

any idea?

I think you’re getting confused between an action and a state.
Action will be open, close or stop.
State will be open or closed. I understand you’re controlling a shutter, but you may have another state for when the shutter is half open, if not, you can use a template to check state!=‘open’ and state!=‘closed’

1 Like