vekexasia / comfoair-esp32

Interact with Zehnder Comfoair with esp32
Other
124 stars 40 forks source link

Negative sensor temperature rolls over #10

Closed svde closed 2 years ago

svde commented 2 years ago

The outside temperature is negative this evening, but it's reporting 6553.5 Celsius. I guess the value rolled over.

image

From the Zehnder app: image

svde commented 2 years ago

Implemented a workaround in node-red:

if( temp > 3276.7 ) { temp = temp - 6553.6; }

sodre90 commented 2 years ago

Hi, here is my PR to fix it: https://github.com/vekexasia/comfoair-esp32/pull/12