Revert climate from preset to standard mode?

I have several thermostats that have a preset mode for “manufacturer specific” operation. This means that the valves can be controlled directly through the thermostats (0-100%) instead of setting a temperature set point.
In this mode, the temperature setpoints are ignored.

Is there a way (e.g. service call) to revert back to normal operation mode?

The climate UI does not make sense to me in this regard.
The preset selection always shows “Keine” (=None). After selecting a preset the UI switches back to “none” - apparently when the preset has been applied.

The only way I found is to turn from “Heating” to “Off” and back to “Heating”.
I would have expected a “default” entry in the selection box or something in these lines.

image

1 Like

Which integraton is this?

1 Like

It is a zwave thermostat , an eurotronic spirit.

Manufacturer mode is a preset, so the service is climate.set_preset_mode. See https://github.com/home-assistant/home-assistant/blob/2c6a869bc61d922b77cc4a7588d079e8a2836013/homeassistant/components/zwave/climate.py

Yes, the preset can be set, but the question was how to unset it and return to normal operation. The thing is that a preset is the wrong term and place for the two different operating modes of the thermostats (setpoint and manual valve control)

set it to PRESET_NONE

You are (almost) right!
.
Even though the state of the climate entity is looking like this already:
image

Setting it again to “none” worked. “PRESET_NONE” did not.
It could not find a way to do it through the UI though because it always shows None and the combobox does not trigger an event when reselecting the “none” entry.

Here’s my test service call
image

Thanks for your help!

1 Like

Glad I managed to point somewhat in the right direction :slight_smile: