Skip to content

Examples

Mushroom Status Card

This Lovelace card shows download and upload rates, answering machines AB0 to AB4 with new and old messages, plus 2.4 GHz WLAN, 5 GHz WLAN and guest WLAN status.

Mushroom must be installed in Home Assistant.

FRITZ!Box to MQTT Mushroom status card

yaml
type: vertical-stack
cards:
  - type: custom:mushroom-title-card
    title: FRITZ!Box
    subtitle: MQTT Status und Dienste
  - type: horizontal-stack
    cards:
      - type: custom:mushroom-entity-card
        entity: sensor.fritz_box_tr_064_downloadrate
        name: Download
        icon: mdi:download-network
        layout: vertical
      - type: custom:mushroom-entity-card
        entity: sensor.fritz_box_tr_064_uploadrate
        name: Upload
        icon: mdi:upload-network
        layout: vertical
  - type: custom:mushroom-title-card
    title: Anrufbeantworter
  - square: false
    type: grid
    columns: 1
    cards:
      - type: custom:mushroom-template-card
        primary: AB0
        secondary: >
          Neu: {{ states('sensor.fritz_box_tr_064_ab0_neue_nachrichten') }} ·
          Alt: {{ states('sensor.fritz_box_tr_064_ab0_alte_nachrichten') }}
        icon: mdi:voicemail
        entity: binary_sensor.fritz_box_tr_064_ab0_status
        color: >
          {% if is_state('binary_sensor.fritz_box_tr_064_ab0_status', 'on') %}
          green {% else %} red {% endif %}
        features_position: bottom
      - type: custom:mushroom-template-card
        primary: AB1
        secondary: >
          Neu: {{ states('sensor.fritz_box_tr_064_ab1_neue_nachrichten') }} ·
          Alt: {{ states('sensor.fritz_box_tr_064_ab1_alte_nachrichten') }}
        icon: mdi:voicemail
        entity: binary_sensor.fritz_box_tr_064_ab1_status
        color: >
          {% if is_state('binary_sensor.fritz_box_tr_064_ab1_status', 'on') %}
          green {% else %} red {% endif %}
        features_position: bottom
      - type: custom:mushroom-template-card
        primary: AB2
        secondary: >
          Neu: {{ states('sensor.fritz_box_tr_064_ab2_neue_nachrichten') }} ·
          Alt: {{ states('sensor.fritz_box_tr_064_ab2_alte_nachrichten') }}
        icon: mdi:voicemail
        entity: binary_sensor.fritz_box_tr_064_ab2_status
        color: >
          {% if is_state('binary_sensor.fritz_box_tr_064_ab2_status', 'on') %}
          green {% else %} red {% endif %}
        features_position: bottom
      - type: custom:mushroom-template-card
        primary: AB3
        secondary: >
          Neu: {{ states('sensor.fritz_box_tr_064_ab3_neue_nachrichten') }} ·
          Alt: {{ states('sensor.fritz_box_tr_064_ab3_alte_nachrichten') }}
        icon: mdi:voicemail
        entity: binary_sensor.fritz_box_tr_064_ab3_status
        color: >
          {% if is_state('binary_sensor.fritz_box_tr_064_ab3_status', 'on') %}
          green {% else %} grey {% endif %}
        features_position: bottom
      - type: custom:mushroom-template-card
        primary: AB4
        secondary: >
          Neu: {{ states('sensor.fritz_box_tr_064_ab4_neue_nachrichten') }} ·
          Alt: {{ states('sensor.fritz_box_tr_064_ab4_alte_nachrichten') }}
        icon: mdi:voicemail
        entity: binary_sensor.fritz_box_tr_064_ab4_status
        color: >
          {% if is_state('binary_sensor.fritz_box_tr_064_ab4_status', 'on') %}
          green {% else %} red {% endif %}
        features_position: bottom
  - type: custom:mushroom-title-card
    title: WLAN
  - type: horizontal-stack
    cards:
      - type: custom:mushroom-entity-card
        entity: sensor.fritz_box_tr_064_wlan_2_4_ghz_status
        name: 2,4 GHz
        icon: mdi:wifi
        layout: vertical
      - type: custom:mushroom-entity-card
        entity: sensor.fritz_box_tr_064_wlan_5_ghz_status
        name: 5 GHz
        icon: mdi:wifi
        layout: vertical
      - type: custom:mushroom-entity-card
        entity: sensor.fritz_box_tr_064_wlan_gast_status
        name: Gast
        icon: mdi:wifi-star
        layout: vertical