Intégration stores KNX avec cover esthétique besoin d'aide

cette fois ci cela tient comme cela

knx:
  cover:
    - name: "Store côté Cuisine Belmont"
      move_long_address: "1/0/0"
      move_short_address: "1/1/1" 
      stop_address: "1/0/1"
      position_address: "1/0/10"
      position_state_address: "1/0/11"
    - name: "Store côté Salon Belmont"
      move_long_address: "1/0/2"
      move_short_address: "1/1/1" 
      stop_address: "1/0/3"
      position_address: "1/0/12"
      position_state_address: "1/0/13"
    - name: "Store côté Balcon belmont"
      move_long_address: "1/0/4"
      move_short_address: "1/1/1" 
      stop_address: "1/0/5"
      position_address: "1/0/14"
      position_state_address: "1/0/15"

mais quelle carte je dois prendre maintenant que les points sont valide ?

ca marche avec cette carte mais esthétiquement c’est pas très visiuelle

Capture d’écran 2024-10-01 à 21.29.18

mon code

type: custom:shutter-row
name: Store côté cuisine Belmont
invert_position: true
state_color: true
preset_buttons:
  - name: Open
    icon: mdi:window-shutter-open
    tap_action:
      action: call-service
      service: cover.set_cover_position
      data:
        entity_id: cover.store_cote_cuisine_belmont
        position: 100
move_up_button: {}
move_stop_button: {}
move_down_button: {}
entity: cover.store_cote_cuisine_belmont
disable_position: false
rtl_position: true
group: false
title_template: ''
ignore_state: false

et j’aurais souhaité faire cela

Capture d’écran 2024-10-01 à 21.29.34

c’est terminé !!

j’ai réussi à installer la card et cela marche très bien est c’est esthétique top

je publie aussi la card pour aider les gens et franchement bravo à celui qui la créer

type: custom:shutter-card
title: ''
entities:
  - entity: cover.store_cote_cuisine_belmont
    buttons_position: right
    title_position: up
    shutter_width_px: 150
    name: Store côté Cuisine
  - entity: cover.store_cote_salon_belmont
    buttons_position: right
    title_position: up
    shutter_width_px: 150
    name: Store côté Salon
  - entity: cover.store_cote_balcon_belmont
    buttons_position: right
    title_position: up
    shutter_width_px: 150
    name: Store côté Balcon
style: |
  ha-card {
    font-size: 14px !IMPORTANT;
  }
  .sc-shutter-label {
    font-size: 14px !IMPORTANT;
  }
  .sc-shutter-top {
    text-align: center !IMPORTANT;
  }
  .sc-shutter-buttons {
  color: black
  }
  .sc-shutter-button-stop{
    color: transparent;
    background: url("/local/images/my.png") no-repeat scroll 0 0 transparent;
  }
  .sc-shutter-position{
    color:black;
  }

Merci à tous pour l’aide apporté à la résolution de mon problème

Mike