Merge pull request #317 from gregorwolf/development

Correct sensor name in the output
This commit is contained in:
Verkehrsrot 2019-03-16 11:19:50 +01:00 committed by GitHub
commit 09e3aa085f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ void doHousekeeping() {
// display BME280 sensor data
#ifdef HAS_BME280
ESP_LOGI(TAG, "BME680 Temp: %.2f°C | Humidity: %.2f | Pressure: %.0f",
ESP_LOGI(TAG, "BME280 Temp: %.2f°C | Humidity: %.2f | Pressure: %.0f",
bme_status.temperature, bme_status.humidity, bme_status.pressure);
#endif