As the native thermostat card is growing bigger than a BMW’s front grill these days I’m trying to achieve a decent thermostat card that shows what I’d need. However this isn’t as simple as a thought…
I only need following things:
Current temp (as big as possible to view from a distance)
Target temp with chevrons (smaller as it’s automated anyway)
Mode switches (which change colour based on their state)
Bonus: Humidity (small)
As this seems to be the most versatile card around I guess this might be possible to achieve, however I don’t really see how and I don’t have any real coding skills nor knowledge of CSS.
Is there a way to have speed controls (for the fan speed on air conditioners) yet? I saw some people asking about this in 2019, but I’m not finding any mention of it after that.
Hello
I read along this thread but I didn’t find a solution that works for me
I have a window sensor to control if a window is open/closed
How can I change icon based on sensor state?
under sensors I added
sensors:
- entity: binary_sensor.my_window_sensor_contact
icon:
off: mdi:window-close
on: mdi:window-open
Hi everyone,
I’m trying to set up the Simple Thermostat card to show in a single row just one “hvac” item (e.g., “Heat”) along with three specific “preset” items (“eco,” “frost,” and “comfort”) . Is there a way to configure this or to make the card more compact by removing unnecessary items?
Is it possible to change the target temperature displayed to not include the decimal as i change the temperature up or down in in 1⁰ increments, but keep the room temperature to 1 decimal place?
i’m trying to modify the card as shown in picture but nothing works, can anyone help me? I want to move up the sensors underneath the name (heading) and beneath them , centered to put in row the target temp and leave the controls on the lower part
Mahlzeit, ich hab mich mal mit der Heizungskarte beschäftigt und stecke jetzt fest.
Wie kann ich den zustand ändern? Ich hätte gern statt on/off geschlossen/geöffnet stehen. Geht das?
Thanks for this inspiration! I took it a few steps further and ended up with this. Kind of a mash up of your original mixed in with how Beestat displays data, or at least as close as I could get it using what is natively available in HA.
Hi all. I sometimes have my air conditioning system operate in “damper” mode rather than temperature mode. When it’s in that mode changing the target temperature causes an error. I’d like to make it obvious that it’s in damper mode so I don’t try changing the temperature.
Does anyone have a suggestion on how I could gray out / disable / deactivate the whole simple-thermostat component if that room is put into “damper” mode? I have many simple-thermostat instances on the page, one for each room / zone, so I can act on the whole component.
I can write the logic / template in Jinga, but not sure how to disable. I have code below that simply changes the text color from black to near white when it’s in damper mode, but this doesn’t work well when my phone is in dark mode.
I found a way that works ok. Oddly though I have to use color names like “pink” or “gray”, color codes like #ababab work fine on the web interface on my PC but don’t work on the Android HA app.
style: |
ha-card {
{ # removed but put back if needed background: #fff; # }
--primary-text-color: {% if state_attr('climate.pa_lounge', 'control_method') == 'temperature' %}{% else %}pink{% endif %};
--st-font-size-xl: 20px;
--st-spacing: 1px;
}