Lovelace: Simple thermostat card

I really can’t help there, as I only have heat mode.
But I believe that the repo documentation is clear on that. I suggest having a few tries.

Regarding the icons, I believe you would need to use card-mod:

I can’t get this installed. I have installed it the recommended way (hacx).
Running a fresh Home Assistant OS install on a nuc.

Skjermbilde 2020-12-29 233819

Is there a way to change the icon color next to the Name/Room/etc at the left hand top?

Found out my own problem, had to use url: /hacsfiles/simple-thermostat/simple-thermostat.js instead. I made a pull request to update the github installation manual.

Stupid question…where is the configuration file at to make changes to the card? I want to add my humidity sensors to the card but can’t figure out where the configuration file is.

Thanks, Robert

Just add it your sensor to your thermostat card like so:

type: 'custom:simple-thermostat'
entity: climate.livingroom
sensors:
  - entity: sensor.living_temp
    icon: 'mdi:thermometer'
  - entity: sensor.living_humid
    icon: 'mdi:water'
  - entity: sensor.living_press
    icon: 'mdi:gauge'
...

Thanks, worked perfectly.

Love this card but trying to add one additional bit of info.

For my climate entity climate.th6320zw2003_t6_pro_series_thermostat_mode, I would like to be able to display the fan_action attribute. Since I have the fan set to circulate mode, I would like to be able to see when it is actually running and when it isn’t.

Any help is appreciated.

This is a stupid question, but I went from YAML mode to UI mode, and copied everything over properly - the only thing not looking right is the thermostat card. It’s missing the up/down arrows to actually control the thermostat. If I click there, it works - just can’t see it.

Any ideas?

Capture

Hello folks,

I have a problem styling the simple thermostat cards. As you can see below the ‘’’setpoint’’’ attribute/control has different sizes on ipad and iphone. It does enlarge the setpoint control part also in webbrowser if I scale the window down. Any ideas why the css setting the size of font does not work?

Hi did you ever get this timer working (to show the remaining boost)
I’m trying to have it display it on my card.
Thanks

No, back then it was not possible. I don’t know if there were any changes made so that it would work now.

Thanks for the reply.
I’ve actually just found THIS and i’m trying to set it up as a small side button.

Let me know if it works!

Hiya thanks to Tom on that page I linked he created a template sensor that works as a timer when my boolean switch turns on.
I just need to linkk it to the boost button on this card now… I’ve not looked into that bit yet :slightly_smiling_face:

sensor:
  - platform: template
    sensors:
      boost_time_remaining:
        friendly_name: 'Time Remaining'
        unit_of_measurement: "min"
        value_template: >
          {% if is_state('input_boolean.boost_toggle', 'on') %}
            {{ [ (30 - (as_timestamp(now()) - as_timestamp(states.input_boolean.boost_toggle.last_changed))/60)|round(0) ,0 ] | max }}
          {% else %}
            0
          {% endif %}

wowww :heart_eyes:

what is your template of Home assistant?

Homekit card , sidebar and some yaml

Use a different theme? Your theme does not change the color of the arrows.

Did you ever figure out how to remove the multiple target temp controls?

can tell me put inside code button for swing mode in my card ?
control:
_headings: false
fan: true
swing_mode: true
hvac:
‘off’:
name: Spento
decimals: 0
entity: climate.clima_sala
icon: ‘false’
hide:
state: true
temperature: true
step_layout: row
type: 'custom:simple-thermostat