Mushroom Template Card
https://www.facebook.com/groups/HomeAssistantDE/posts/1298952784076889/?comment_id=1299037070735127&reply_comment_id=1299040760734758L3xuz
yaml
3 years ago
896 B
22
Indexable
# sess: https://www.facebook.com/groups/HomeAssistantDE/posts/1298952784076889/?comment_id=1299037070735127&reply_comment_id=1299040760734758
type: custom:mushroom-template-card
primary: |
Waschmaschine
secondary: |
{% if is_state("sensor.washing_machine_machine_mode", "Running") %}
An
- {{ states("sensor.washing_machine_temperature") }}
- {{ states("sensor.washing_machine_spin_speed") }}
- {{ states("sensor.washing_machine_what_else") }}
{% else %}
Aus
{% endif %}
icon: mdi:washing-machine
multiline_secondary: true
icon_color: |
{{ "indigo" if is_state("sensor.washing_machine_machine_mode", "Running") else "" }}
# oder, was ich persönlich besser lesbar halte
# {{ iff(is_state("sensor.washing_machine_machine_mode", "Running"), "indigo", "") }}
tap_action:
action: more-info
entity: sensor.washing_machine_machine_last_statusEditor is loading...