Giter VIP home page Giter VIP logo

Comments (5)

apfelflo89 avatar apfelflo89 commented on May 22, 2024 1

@jay448 Try a short template like that:
icon_color: '{{ is_state("input_boolean.charger_port_1_boolean", "on") | iif("red", "green") }}'

from lovelace-mushroom.

piitaya avatar piitaya commented on May 22, 2024

Hello 🙂
You can use template card to do this : https://github.com/piitaya/lovelace-mushroom/blob/main/docs/cards/template.md

For example :

type: custom:mushroom-template-card
primary: Number of entities
secondary: |
  {{ states | count }} entities
icon: mdi:format-list-bulleted
icon_color: |
  {{ "green" if states | count > 50 else "red" }} 

from lovelace-mushroom.

apfelflo89 avatar apfelflo89 commented on May 22, 2024

Worked for me! Thank you very much 👍

from lovelace-mushroom.

jay448 avatar jay448 commented on May 22, 2024

Just to hook on to this thread, perhaps any of you can help.
I'm trying to get my public charger to report back it's status with colors instead of just status. I've had a look at the example above but I cannot seem to make it work. The status is being taken from a input_boolean which has either the state "On" or "Off". When the switch is on the port is taken (so I'd like the icon to be red) and when it's off I'd like to have it green.
Could you please assist with the icon_color part of this?

type: custom:mushroom-template-card
primary: Chargeport 1
secondary: |
  {% if is_state('input_boolean.charger_port_1_boolean', 'on') %}
    Taken
  {% else %}
    Free
  {% endif %}
icon: mdi:format-list-bulleted
icon_color: |
  {% if is_state('input_boolean.charger_port_1_boolean', 'on') %} "red" {%
  else %} "green" {% endif %}

The cards are amazing fyi! Perhaps see if you can include some example configuration in the documentation if you were not already planning that. Cheers!

from lovelace-mushroom.

jay448 avatar jay448 commented on May 22, 2024

@jay448 Try a short template like that:
icon_color: '{{ is_state("input_boolean.charger_port_1_boolean", "on") | iif("red", "green") }}'

Worked like a charm. Thanks!

from lovelace-mushroom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.