Hi !
I integrated some thermostats by EQ3.
They show their values in degree Fahrenheit.
I could not find a way to show them in degree Celsius.
Can anyone help me ?
Thank you in advance
Kalle
Hi !
I integrated some thermostats by EQ3.
They show their values in degree Fahrenheit.
I could not find a way to show them in degree Celsius.
Can anyone help me ?
Thank you in advance
Kalle
Welcome.
If the UI does not give you the option to change the units, you can create template sensors to do this:
Use a state template like this, but with your entity IDs in place of the ones I’ve had to invent due to the lack of detail in your post:
{{ (states('sensor.eq3_temp_1')|float(0) - 32) / 1.8 }}
Should look like this:
Shows -18°C for me because I don’t have the EQ3 sensor, and it’s using 0°F as a fallback default.
Hi, Troon !
Thank you very much.
I had hoped that there is a configuration entry like
unit: celsius
for all climate entities.
But now I will implement your solution.
Kind regards
Kalle