kakaki / esphome_dietrich

Dietrich (Remeha) Boiler connectivity using ESP8266 with ESPHOME - Home Assistant
23 stars 17 forks source link

boiler_hydro_pressure_sensor + boiler_ionisation_current #4

Open BennoB666 opened 2 years ago

BennoB666 commented 2 years ago

Hi kakaki,

thank you for your work. I found some issues. Maybe you will fix this.

Thx a lot.

BennoB666 commented 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

BennoB666 commented 2 years ago

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

ministryofsillywalks commented 2 years ago

My outside temperature is also showing as +320°C Did you ever figure out how to fix this?

rjblake commented 1 year ago

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