I started with my first couple of ESPHome devices just few weeks ago and realy like the ease of use.
I had some nodemcu’s controlling my heating valve before and migrated them to ESPHome. Now I want to add some temperature sensors and use the thermostat climate platform.
So I have 2 ESP’s (one with sensor, the other with valve controll). Where do I put the thermostat platform? Does it make any difference?
Also my heating is capable of heating and cooling. So in both cases I need to activate the same valve, but my system has different inlet temps. I can read this inlet temp in HA.
Is there a way to only activate cool_action if inlet_temp < 20 and heat_action if inlet_temp > 24?
With multiple sensors and valve control spread out over different devices that feed into HA, I would probably use the Generic Thermostat integration in Home Assistant rather than implementing it on one of the ESP devices.
That looks great. As both my heater and my cooler are identical I might add an automation to set mode to heating when supplytemp is greater than 24 and to cooling if supplytemp is below 22…
I there a way to only enable heat or cool but not heat/cool?
Well I probably need some time to dig through all these options for PID…
@BebeMischa Are you using this smart thermostat yourself? Cause I can not get it to work. When I configure it as ON/OFF device it just cycles ON/OFF multiple times a second and when set to PID it newer switches on the heating valve…
I do not use the PID. Still had no time to get that working, as I know, that getting the right values for it to run well needs some trial and error discovery by observation.
I use the on/off mode for a climate box (fermentation processes) and that works like a charm.
Thanks for your reply. I might have narrowed down the problem. It seems it does not only want to start the heating device, but also disable the cooler. As they are both the same in my case this leads to that ON/OFF loop, even when only in heating mode.
Do you mean my heating devices? Those are simple mosfets connected to an ESP. Those mosfets directly controll the valve of my underfloor heating circuit. So there is no additional logic included except ESPHome.
There is no way for ESPHome to influence heating/cooling. The switch only controls the valve. I read the temperature sensor of my heating system and want to set all thermostats to heating if supply temp is above 24 (and to cooling is supply temp is below 22).
So if mode is set to heating I only want the thermostat to care about heating and not cooling and vice versa.