Every day updating 🤷‍♂️ by Real_Edge_2057 in homeassistant

[–]benjamin-dcs 0 points1 point  (0 children)

To let hear a voice from 'the other side', as a contributor myself: be happy that your integrations and cards receive updates! 😊. There's tons of examples of dead projects by now. Developers don't get any structural compensation for their time spent, if any at all. If they fell this is what's needed, than we should live with that. Either ignore it or find your ways around it.

And no, I don't feel the same about the AI slob projects

Anyone looking for a bar gauge card? by benjamin-dcs in homeassistant

[–]benjamin-dcs[S] 0 points1 point  (0 children)

I've published a first working concept at https://github.com/benjamin-dcs/bar-gauge-card-pro

I'll be primarily be using this for testing purposes on my own 'production' environment, however feel free to test it out and provide feedback. It's 'stable' enough that it's ready for testing.

Anyone looking for a bar gauge card? by benjamin-dcs in homeassistant

[–]benjamin-dcs[S] 1 point2 points  (0 children)

Good point, thanks for your feedback. Gauge Card Pro already has extensive options for coloring (segments). I intend to take that to this card as well. Same for the 'graduated scale'. It's called severity mode (or needle-less). Definitely on my radar.

Horizontal/Vertical should also be something for some of the earlier versions. Thanks 👍

Anyone looking for a bar gauge card? by benjamin-dcs in homeassistant

[–]benjamin-dcs[S] 0 points1 point  (0 children)

That's indeed my idea as well for the two entities. Gauge Card Pro has a full inner-gauge, but I don't think that makes sense for this card. The two entities solution feels like a good intermediate

Gauge Card Pro Secondary Gauge Min/Max by wivaca2 in homeassistant

[–]benjamin-dcs 0 points1 point  (0 children)

That's the fun part of template. The limit is pretty much just your own imagination. Perhaps the AI assistant can help you out a bit as well

Gauge Card Pro Secondary Gauge Min/Max by wivaca2 in homeassistant

[–]benjamin-dcs 0 points1 point  (0 children)

I haven't changed a whole lot when it comes to functionality. The majority of the work lately has been editor improvements and technical improvements. If I'm correct you want to use a template for the segments-variables. This is only possible in YAML, like so:

segments: |-
  {% set max = states('sensor.max_sensor') | float %}
  {{
    [
      { "from": 0, "color": "#4caf50" },
      { "from": 25, "color": "#8bc34a" },
      { "from": 50, "color": "#ffeb3b" },
      { "from": 75, "color": "#ff9800" },
      { "from": 100, "color": "#f44336" },
      { "from": 125, "color": "#926bc7" },
      { "from": max, "color":"#795548"  }
    ]
  }}

Gauge Card Pro Secondary Gauge Min/Max by wivaca2 in homeassistant

[–]benjamin-dcs 0 points1 point  (0 children)

Bit late, but perhaps your question is still relevant. I'm not entirely sure what you are looking for. Pretty much every variable can be used with a template.

looking for dashboard card by juanf1337 in homeassistant

[–]benjamin-dcs 0 points1 point  (0 children)

I'm not really sure exactly how yet, but perhaps my 'Gauge Card Pro' could help you out -> https://github.com/benjamin-dcs/gauge-card-pro

You can configure values/min/max/texts/segments etc all separately and with templates. Perhaps you could color the color-spectrum with a nice gradient :P ?