simple-thermostat
simple-thermostat copied to clipboard
How do I hide presets?
I can't figure out a way to hide Presets and keep only Operation. How do I hide the None/Away/Eco/Boost line?
Thanks!
Use:
control:
- hvac
Use:
for hide hvacs:
control:
hvac:
heat: off
For hide presets:
control:
preset:
none: false
away: false
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
To remove the controls altogether, you just need:
control: false