@d0neria Vielen, vielen Dank!
Die Icons für rotation kurz getauscht (intermediate anstatt window-open) und und das Script für Icon Color auch für Secondary Info verwendet um offen, gekippt, geschlossen darzustellen.
Super!
Dankeschön!!!
Sieht aktuell wie folgt aus:
type: custom:mushroom-template-card
primary: Shelly Blu Door/Window
secondary: |
{% if is_state('binary_sensor.bthome_sensor_1234_window','off') %}
geschlossen
{% elif states('sensor.bthome_sensor_1234_rotation')|float(0) > 1 %}
gekippt
{% else %}
offen
{% endif %}
icon: |-
{% if is_state('binary_sensor.bthome_sensor_1234_window','off') %}
mdi:window-closed
{% elif states('sensor.bthome_sensor_1234_rotation')|float(0) > 1 %}
mdi:checkbox-intermediate-variant
{% else %}
mdi:window-open
{% endif %}
icon_color: |-
{% if is_state('binary_sensor.bthome_sensor_1234_window','off') %}
green
{% elif states('sensor.bthome_sensor_1234_rotation')|float(0) > 1 %}
orange
{% else %}
red
{% endif %}
entity: binary_sensor.bthome_sensor_1234_window
layout: vertical