Une carte avec un interupteur a 3 positions

Ça fonctionne parfaitement, Merci beaucoup !

1 « J'aime »

Je débarque après la bataille, mais j’ai aussi chercher un interrupteur avec 3 positions et j’ai réussi à faire un truc comme ça :
{313EF27D-1278-4505-BD85-D0DE5C47D1B2}

Si jamais ça intéresse !!

1 « J'aime »

Nous sommes toujours preneur donc n’hésite pas à publier ce que tu as fait sur le sujet
Je pense qu’il y a du monde qui cherche ou bricole des solutions de ce type

Nous attendons donc code, automation etc… :wink:

1 « J'aime »

Ca intéresse effectivement. merci de donner plus d’infos.

Hello,

j’ai fait comme ça :

type: horizontal-stack
cards:
  - type: custom:button-card
    color_type: card
    entity: input_select.frigate_container_mode
    name: Frigate container
    styles:
      card:
        - height: 60px
        - "--mdc-ripple-color": "#0288d1"
        - "--mdc-ripple-press-opacity": 0.7
    state:
      - operator: default
        color: white
  - type: custom:button-card
    color_type: card
    entity: input_select.frigate_container_mode
    name: Normal
    icon: mdi:close-circle-outline
    styles:
      card:
        - height: 60px
        - "--mdc-ripple-color": "#0288d1"
        - "--mdc-ripple-press-opacity": 0.7
        - width: 70px
    tap_action:
      action: call-service
      service: input_select.select_option
      service_data:
        entity_id: input_select.frigate_container_mode
        option: Normal
    state:
      - value: Normal
        color: "#03a9f4"
      - operator: default
        color: white
  - type: custom:button-card
    color_type: card
    entity: input_select.frigate_container_mode
    name: Stop
    icon: mdi:power-cycle
    styles:
      card:
        - height: 60px
        - "--mdc-ripple-color": "#0288d1"
        - "--mdc-ripple-press-opacity": 0.7
        - width: 70px
    tap_action:
      action: call-service
      service: input_select.select_option
      service_data:
        entity_id: input_select.frigate_container_mode
        option: Stop
    state:
      - value: Stop
        color: red
      - operator: default
        color: white
  - type: custom:button-card
    color_type: card
    entity: input_select.frigate_container_mode
    name: Start
    icon: mdi:power
    styles:
      card:
        - height: 60px
        - "--mdc-ripple-color": "#0288d1"
        - "--mdc-ripple-press-opacity": 0.7
        - width: 70px
    tap_action:
      action: call-service
      service: input_select.select_option
      service_data:
        entity_id: input_select.frigate_container_mode
        option: Start
    state:
      - value: Start
        color: green
      - operator: default
        color: white

Capture d'écran 2025-02-07 212310

avec un input_select créé dans les paramètres avec les options suivantes :