In version 0.6.6 the default was AdvancedOverride when changing you setpoint using the standard thermostat card. So If you want it back in the current version (0.7.9), change line 248 in custom_components/evohome_cc/climate.py
self.svc_set_zone_mode(setpoint=kwargs.get(ATTR_TEMPERATURE))
to
self.svc_set_zone_mode(setpoint=kwargs.get(ATTR_TEMPERATURE), mode=ZoneMode.ADVANCED)
My main reason is that I have a schedule defined in Evohome and through HA interface it’s easy to make a temporary change, knowing that for some reason at some point in time the Evohome will set it back at to the schedule setpoint.
I have looked at changing the services calls using the custom card (simple-thermostat), still can’t seem to figure out on how to change to use the evohome_cc service calls. If someone could provide me with an example that would be great.
If default zone mode could be configurable that would also be a nice addition.