This commit is contained in:
Otto Winter 2019-10-19 17:38:48 +02:00
parent 16bc60644d
commit 62d4b29662
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E

View File

@ -113,8 +113,7 @@ void SCD30Component::update() {
uint32_t temp_hum_u32 = (((uint32_t(raw_data[4])) << 16) | (uint32_t(raw_data[5])));
uint32_float_t humidity{.uint32 = temp_hum_u32};
ESP_LOGD(TAG, "Got CO2=%.2fppm temperature=%.2f°C humidity=%.2f%%",
co2.value, temperature.value, humidity.value);
ESP_LOGD(TAG, "Got CO2=%.2fppm temperature=%.2f°C humidity=%.2f%%", co2.value, temperature.value, humidity.value);
if (this->co2_sensor_ != nullptr)
this->co2_sensor_->publish_state(co2.value);
if (this->temperature_sensor_ != nullptr)