simple-thermostat icon indicating copy to clipboard operation
simple-thermostat copied to clipboard

How do I hide presets?

Open Stooovie opened this issue 3 years ago • 4 comments

I can't figure out a way to hide Presets and keep only Operation. How do I hide the None/Away/Eco/Boost line? Snímek obrazovky 2021-11-05 165658 Thanks!

Stooovie avatar Nov 05 '21 15:11 Stooovie

Use:

control:
  - hvac

CRCinAU avatar Nov 10 '21 10:11 CRCinAU

Use:

for hide hvacs:

control:
  hvac:
    heat: off

For hide presets:

control:
  preset:
    none: false
    away: false

bimbam333 avatar Nov 19 '21 00:11 bimbam333

This is what I found to work for me. First you need to go to dev tools and get the names of the different modes your thermostat supports. Then, once I set the hvac names the presets went away.

  - type: custom:simple-thermostat
    entity: climate.upstairs
    layout:
      step: column
      mode:
        headings: false
    decimals: '0'
    step_size: '1'
    control:
      hvac:
        'off':
          name: 'Off'
        cool:
          name: A/C
        heat:
          name: Heat

mclever avatar Jan 06 '22 04:01 mclever

To remove the controls altogether, you just need:

control: false

Wickedy123 avatar Sep 07 '23 08:09 Wickedy123