Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type: custom:stack-in-card
- mode: vertical
- cards:
- - type: custom:mushroom-person-card
- entity: person.johannwilken
- use_entity_picture: true
- hide_name: true
- layout: vertical
- - type: custom:mushroom-chips-card
- style: |
- ha-card {
- --chip-box-shadow: none;
- --chip-background: none;
- --chip-spacing: 0;
- }
- alignment: center
- chips:
- - type: template
- entity: binary_sensor.jw_s21_is_charging
- icon: |-
- {% set state=states(entity) %}
- {% if state=='on' %}
- mdi:power-plug-outline
- {% elif state=='off' %}
- mdi:power-plug-off-outline
- {% else %}
- mdi:power-plug-off-outline-off
- {% endif %}
- tap_action:
- action: more-info
- icon_color: |-
- {% set state=states(entity) %}
- {% if state=='on' %}
- red
- {% elif state=='off' %}
- green
- {% else %}
- gray
- {% endif %}
- style: |
- ha-card {
- {% if states('binary_sensor.jw_s21_is_charging') == 'on' %}
- animation: blink 0.9s linear infinite;
- }
- @keyframes blink {
- 50% {opacity: 0;}
- }
Advertisement
Add Comment
Please, Sign In to add comment