1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-19 03:32:20 +01:00

Integration sensor use double precision (#715)

Fixes https://github.com/esphome/issues/issues/534

Kept the RTC value as a float in order not to introduce a breaking preferences change.
This commit is contained in:
Otto Winter
2019-10-17 21:35:31 +02:00
committed by GitHub
parent 32195f77d9
commit 9a40d6ef50
2 changed files with 9 additions and 8 deletions

View File

@@ -45,14 +45,14 @@ std::string IntegrationSensor::unit_of_measurement() {
}
void IntegrationSensor::process_sensor_value_(float value) {
const uint32_t now = millis();
const float old_value = this->last_value_;
const float new_value = value;
const double old_value = this->last_value_;
const double new_value = value;
const uint32_t dt_ms = now - this->last_update_;
const float dt = dt_ms * this->get_time_factor_();
float area = 0.0f;
const double dt = dt_ms * this->get_time_factor_();
double area = 0.0f;
switch (this->method_) {
case INTEGRATION_METHOD_TRAPEZOID:
area = dt * (old_value + new_value) / 2.0f;
area = dt * (old_value + new_value) / 2.0;
break;
case INTEGRATION_METHOD_LEFT:
area = dt * old_value;