-
I see the recommended way to setup external temp is to use the home assistant api. In the event the sensor is no longer working what will happen? Will the unit revert to using its internal sensor or continue with the last known temperature? If it reverts how long does it take to do so? My current setup uses actions in HA and sets the remote temp on every update HA receives. If the temp sensor hasn't updated in 10 min it will set the temp to 0 so it uses its internal sensor. Also is the throttle needed? I currently send a new temp every ~10s. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
There is a timeout period for the remote sensor |
Beta Was this translation helpful? Give feedback.
-
Hi, the two ways to update the temperature are to use an ESPHome "HomeAssistant Sensor" or to manually update the service with an HA Automation. The homeassistant sensor is the default and recommended right now because it is simpler and proving more reliable for most users. If you have I'm the one who set the 30s throttle in the default settings - I was worried about forcing the unit to accept a new temperature every update cycle, which can be 2-4s, and I don't think there is any physical reason why you'd want it to accept updates that fast anyway - the goal is to slow down the response of the heatpump so it modulates better, so more filtering rather than less should get a better result. You could try a faster throttle if you wanted, however. |
Beta Was this translation helpful? Give feedback.
Hi, the two ways to update the temperature are to use an ESPHome "HomeAssistant Sensor" or to manually update the service with an HA Automation. The homeassistant sensor is the default and recommended right now because it is simpler and proving more reliable for most users.
If you have
remote_temperature_timeout
set, then yes, if the HA sensor stops sending updates, the unit will revert back to the internal temperature sensor after that timeout. I'm using 30 min right now, which seems to work well in my house. You could set it faster if your sensors update faster.I'm the one who set the 30s throttle in the default settings - I was worried about forcing the unit to accept a new temperatur…