Hi I am very new to HA but I did some googling and youtube and came to this on the sensor.heating_heating entity
but the colour stays grey even though the heating is showing 100%, am i on totally the wrong track here, and should give up, or am i only slightly wrong
type: custom:mushroom-chips-card
chips:
- type: entity
entity: light.heater_plug
icon_color: amber
icon: mdi:fire
name: Heater
use_entity_picture: true
- type: entity
entity: sensor.lumi_lumi_weather_temperature
icon_color: amber
- type: entity
entity: sensor.heating_heating
icon_color: amber {% if is_state('sensor.heating_heating', '0') %} grey {% endif %}
use_entity_picture: true
content_info: state
- type: entity
entity: sensor.heating_temperature
icon_color: amber
alignment: center
i tried this also these
- type: entity
entity: sensor.heating_heating
icon_color: >-
{% if is_state('sensor.heating_heating', '0') %} grey {% else %}
amber {% endif %}
use_entity_picture: true
content_info: state
- type: entity
entity: sensor.heating_heating
icon_color: >-
{% if is_state_attr('sensor.heating_heating', '0') %} grey {% else %}
amber {% endif %}
use_entity_picture: true