After a couple of years having a Raspberry pie running on the EBUS of my central heating I decided to go for the integration in HA and Node red.
After a couple of days learning about HA, I finally managed to get things configured and set up (steep learning curve)
Now I have setup a climate control on a generic_thermostat platform with a thermostat card in lovelace.
It works fine, but when I set the temperature, it changes back after a couple of minutes.
In the log I find this in the logfile “Living Room Setpointchanged to 14.0 by Supervisor”
What could that be?
the climate setup is simple
- platform: generic_thermostat
name: living_room
heater: switch.dummyheater_toggle
target_sensor: sensor.nr_woonkamer_temp
I have changed to climate mqtt, but problem is the same
- platform: mqtt
name: living_room
modes:
- "off"
- "heat"
- "auto"
action_topic: "NR/Woonkamer/CVMode"
mode_command_topic: "thermostat/woonkamer/mode/set"
mode_state_topic: "thermostat/woonkamer/mode/state"
current_temperature_topic: "NR/Woonkamer/Temperature"
temperature_command_topic: "thermostat/woonkamer/settemp"
temp_step: 0.5
precision: 0.5
I’m going to control everything in Node-red, but because of this strange behavior I removed all bindings with node-red (that didn’t change this behavior)
What’s going on here, and what can I do to keep “supervisor” fiddling with my thermostat?