How to show different icons on same card based on state

For my garage door, I am building out a mobile dashboard.
I have a grid set (2 columns).
On this specific one, I am adding the garage door and then something next to it.

Is this possible…
If the garage door is shut, it will show one icon. Click the button, to open garage door, once it is open, the icon changes.

New at this, and have not figured this out.

square: true
columns: 2
type: grid
cards:
  - show_name: true
    show_icon: true
    type: button
    tap_action:
      action: toggle
    entity: cover.garage_door
    icon: mdi:garage-variant
    show_state: true
    theme: Google Dark Theme

Not with the button card as far as i know, but you can use custom:button-card, look here:

A simple config would look like this:

type: custom:button-card
entity: binary_sensor.your_garage_door_sensor
state:
  - value: 'off'
    icon: mdi:garage-lock
  - value: 'on'
    icon: mdi:garage-open
1 Like

How do you add this or load it up, I can’t find the instructions…sorry.

1 Like

You have to install the custom:button-card before you can use it. The simplest way is using HACS, here is the tutorial how to:

(Sooner or later you will need HACS so it’s a good time to begin now)
Once installed you can search in HACS for button card and install it right with a few clicks.

You can also install it manualy, here is described how to:

1 Like

ok got it!

Any help with the action? When I used your example, it would just show me the settings (like history).
So by looking at the other examples, I added an action, but that is doing nothing.

type: custom:button-card
entity: cover.garage_door
tap_action:
  action: cover.open_cover
state:
  - value: closed
    icon: mdi:garage-variant
  - value: open
    icon: mdi:garage-open-variant

Ok, fixed the action, still nothing is happening :frowning:

type: custom:button-card
entity: cover.garage_door
tap_action:
  action: call-service
  serivice: cover.open_cover
  service_data:
    entity_id: cover.garage_door
show_state: true
state:
  - value: closed
    icon: mdi:garage-variant
  - value: open
    icon: mdi:garage-open-variant

got it working, thank you…except for opening.
I am going to start a new thread about that soon, as it will close but not open.