SkyWalker2_D
Active member
Moin!
Man hat mir die animierten Icons für die Mushroom cards gezeigt. Die Büchse der Pandora ist geöffnet
https://community.home-assistant.io/t/mushroom-cards-build-a-beautiful-dashboard-easily/388590/3240
Jetzt hatte ich versucht mittels einer Muschroom Chips card bei eingeschalteter Waschmaschine ein entsprechendes Logo anzeigen zu lassen.
Der Code funktioniert auch wenn ich ihn als Card anlege, nicht aber bei einer Bedingung innerhalb der Chips card.
Ich hatte gedacht, es klappt einfach indem ich als Action Template wähle und dann den Code einfüge. Klappt aber nicht Was übersehe ich?
Grüße
Sky
Man hat mir die animierten Icons für die Mushroom cards gezeigt. Die Büchse der Pandora ist geöffnet
https://community.home-assistant.io/t/mushroom-cards-build-a-beautiful-dashboard-easily/388590/3240
Jetzt hatte ich versucht mittels einer Muschroom Chips card bei eingeschalteter Waschmaschine ein entsprechendes Logo anzeigen zu lassen.
Der Code funktioniert auch wenn ich ihn als Card anlege, nicht aber bei einer Bedingung innerhalb der Chips card.
Ich hatte gedacht, es klappt einfach indem ich als Action Template wähle und dann den Code einfüge. Klappt aber nicht Was übersehe ich?
YAML:
type: custom:mushroom-chips-card
chips:
- type: conditional
conditions:
- entity: input_boolean.waschmaschine_lauft
state: 'on'
chip:
type: custom:mushroom-template-card
icon: mdi:washing-machine
icon_color: amber
primary: Waschmaschine
card_mod:
style:
mushroom-shape-icon$: |
ha-icon {
--icon-animation: shake 400ms ease-in-out infinite, drum 2s ease infinite;
transform-origin: 50% 110%;
}
@keyframes shake {
0%, 100% { transform: translate(0, 0) rotate(0); }
20% { transform: translate(0.4px, -0.4px) rotate(-4deg); }
40% { transform: translate(-0.4px, 0.4px) rotate(4deg); }
60% { transform: translate(0.4px, 0.4px) rotate(-4deg); }
80% { transform: translate(-0.4px, -0.4px) rotate(4deg); }
}
@keyframes drum {
50% { clip-path: polygon(0 0, 0 100%, 35% 100%, 34% 68%, 60% 41%, 71% 56%, 65% 74%, 47% 79%, 32% 69%, 35% 100%, 100% 100%, 100% 0); }
}
- type: conditional
conditions:
- entity: input_boolean.waschmaschine_lauft
state: 'off'
chip:
type: template
entity: input_text.waschmaschine_lauft_nicht
icon: mdi:washing-machine-off
icon_color: grey
content: Waschmaschine aus
Grüße
Sky