Generic thermostat away

Hi

i want to set away temp from a frontend gui.
anyone that can show me how this is done?

I have 6 thermostat where i want to change the away temp without have to edit the yaml file evry time i want a new setpoint. and is there any way to set all thermostat in away mode at the same time. example had been nice. tnx

That is not currently possible.

Yes, you can use the climate.set_preset_mode action and list the climate entities:

action: climate.set_preset_mode
target:
  entity_id: 
    - climate.kitchen
    - climate.bedroom_1
data:
  preset_mode: "away"
1 Like