Shelly 2.5 Cover Group

Hi

I have two shelly’s 2.5 one for my room balcony door shutter and one for the window shutter.
I configured the mqtt and I can control the shutters through the Shelly web interface.

But I am trying to add the two shelly’s on the Home Assistant Dashboard UI cards but no success.
I Can add one but when I add the other one its override the first one , also I tried the groups , in the best case I have both of them but the down arrow disabled as u see in the attached image below … any suggestions ? Thanks

My configuration.yaml code and see

cover:
   - platform: mqtt
     name: "Window Shutter"
     state_topic: "shellies/shellyswitch25-693FA7/roller/0"
     command_topic: "shellies/shellyswitch25-693FA7/roller/0/command"
     position_topic: "shellies/shellyswitch25-693FA7/roller/0/pos"
     set_position_topic: "shellies/shellyswitch25-693FA7/roller/0/command/pos"
     payload_available: "true"
     payload_not_available: "false"
     qos: 1
     retain: false
     payload_open: "open"
     payload_close: "close"
     payload_stop: "stop"
     position_open: 100
     position_closed: 0
     optimistic: false

   - platform: mqtt
     name: "Door Shutter"
     state_topic: "shellies/shellyswitch25-68EF11/roller/0"
     command_topic: "shellies/shellyswitch25-68EF11/roller/0/command"
     position_topic: "shellies/shellyswitch25-68EF11/roller/0/pos"
     set_position_topic: "shellies/shellyswitch25-68EF11/roller/0/command/pos"
     payload_available: "true"
     payload_not_available: "false"
     qos: 1
     retain: false
     payload_open: "open"
     payload_close: "close"
     payload_stop: "stop"
     position_open: 100
     position_closed: 0
     optimistic: false

image

I find better solution here

Thanks for @Bieniu