Open BennoB666 opened 2 years ago
dietrich.h line 196 - if (hydro_pressure_sensor->get_name().length()>0) hydro_pressure_sensor->publish_state(readdata[56]); delay(100); //delay for esphome to not disconnect api change to: if (hydro_pressure_sensor->get_name().length()>0) hydro_pressure_sensor->publish_state(signedFloat(readdata[56]*0.1)); delay(100); //delay for esphome to not disconnect api
dietrich.h line 149 - if (ionisation_current_sensor->get_name().length()>0) ionisation_current_sensor->publish_state(readdata[33]); delay(100); //delay for esphome to not disconnect api change to: if (ionisation_current_sensor->get_name().length()>0) ionisation_current_sensor->publish_state(readdata[33]*0.1); delay(100); //delay for esphome to not disconnect api
My outside temperature is also showing as +320°C Did you ever figure out how to fix this?
My outside temperature is also showing as +320°C Did you ever figure out how to fix this?
Do you have an outside temperature sensor connected? If not, this value returned is 32768 (or 327.68°C) indicating that the connection is open and no sensor connected
Hi kakaki,
thank you for your work. I found some issues. Maybe you will fix this.
Thx a lot.