Lovelace: Simple thermostat card

Nevermind i found it:

--mdc-icon-size: 50px;

I feel this may be a silly question but I just can’t figure it out.

How can I hide the last preset line of this card.

image

Add control to your header config and delete “preset”.

Like:

control:
  - hvac

See here:

Thanks for that however this remove both the Operation icons and the preset line.

I just want to remove the preset line

Try

control:
  hvac: true
  preset: false

If this doesn’t work, please post your config.

Ok new issue.
How can i remove P: at power sensor entity.
I can switch label with icon but i can’ remove it.
My current setup:

cards:
  - control:
      _headings: false
      fan:
        quiet:
          icon: mdi:microphone-off
        auto:
          include: false
        low:
          icon: mdi:fan
        normal:
          icon: mdi:fan-speed-1
        high:
          icon: mdi:fan-speed-2
        highest:
          icon: mdi:fan-speed-3
      hvac:
        auto:
          include: false
        fan_only:
          icon: mdi:fan-alert
    entity: climate.air_condition
    hide:
      mode: false
      temperature: true
      state: true
    sensors:
      - entity: sensor.ac_power_current_consumption
        name: P
        decimals: 0
    step_size: '1'
    style: |
      ha-card {
      background: rgba(0, 0, 0, 0.06);
      border-radius: 30px;
      --st-spacing: 2px;
      --primary-text-color: azure;
      --secondary-text-color: azure;
      --ha-card-box-shadow: 0px 0px 6px rgb(0, 0, 0);
      --st-mode-background: rgba(0, 0, 0, 0.2);
      --st-mode-active-background: purple;
      --st-font-size-sensors: 40px;
      --mdc-icon-size: 50px;
      --st-font-size-m: 50px;
      --st-font-size-l: 50px;
      }
      ha-card .mode-item {
      --st-spacing: 1px;
      border-radius: 15px;
      }
    type: custom:simple-thermostat
    header: false
    layout:
      mode:
        names: false
        headings: false
      step: row
    decimals: '0'
    unit: °
  - type: weather-forecast
    entity: weather.home
    style: |
      ha-card {
      border-radius: 30px;
      --st-spacing: 0px;
      --ha-card-box-shadow: 0px 0px 6px rgb(0, 0, 0);
      --ha-card-background: rgba(0, 0, 0, 0.06); color: azure;
      --primary-text-color: azure;
      --secondary-text-color: #D0FF14;
      }
type: horizontal-stack

Have you tried removing the “name” like so:

    sensors:
      - entity: sensor.ac_power_current_consumption
        decimals: 0

Yes i tried.
I just get ful name of entity instead.
I can’t leave it blank either(name:. )
It only work if i switch it with

icon: mdi:something

@fajrstartr
Try:

name: " "

Yeah that kinda worked thanks.
There is still ( blank space): visible.
The reason i’m trying erase name:
Since i used:

--mdc-icon-size: 50px;

I get this:

So icon and measurement are no longer aligned.

You can try inserting this line under style:| :

      .sensors.with-labels.as-table .sensor-heading {
        display: none;
      }

This is meant to prevent displaying the “name” or icon. However I’m not sure this will solve your alignment issue.

Yes! It worked!
Big thanks.

Thank this fix it

1 Like

Hi, I just set up Infinitude to control my new Carrier Infinity system and am trying out both the simple thermostat card and the default HA one. Both work great except on the simple card I am not able to lower the setpoint, only raise (currently in Cool mode). On the HA thermostat card both raise and lower work fine.

Anyone else having this issue or am I missing something simple?

1 Like

Looking for some advice on how to add some extra colour dynamically to the card. Currently when the thermostat is in auto the only way to tell if the system is calling for heat is by looking at “State: Idle (Auto) or Heating (Auto)”. It would be ideal if there was an extra visual cue such as orange/red colour. This could be on the icon in the top left, on the temperature text itself or somewhere else. Many thanks for any help in advance.
firefox_FYnbImi0ft firefox_n7NcM1uFtP

1 Like

I simply use the switch that is controlled by the thermostat in the headers fault section.
Auswahl_481

          - type: custom:simple-thermostat
            entity: climate.wohnzimmer
            version: 3
            header:
              name: Wohnzimmer
              icon: null
              faults:
                - entity: switch.eth008_eg_3
                  hide_inactive: true

What does the version tag do? Haven’t seen that one in the documentation. :flushed:

EDIT: nevermind, found it “hidden” on the example page! :smiley:

Unfortuantely this won’t work for me I don’t think as I don’t have a binary switch like this. Thanks for the suggestion though!

Hey,

Is it possible to hide the temperature shift control arrows or +/-?

I love this card by the way!