From b99390808efadfe0f501f1c9353f560c17719480 Mon Sep 17 00:00:00 2001 From: Christian Lang Date: Sun, 4 Feb 2024 18:46:41 +0100 Subject: [PATCH] + add comment about typical SCD30 temperature offset values --- software/src/sensors/scd30.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/src/sensors/scd30.cpp b/software/src/sensors/scd30.cpp index c9fc665..dde28dc 100644 --- a/software/src/sensors/scd30.cpp +++ b/software/src/sensors/scd30.cpp @@ -42,7 +42,7 @@ bool Scd30::HardwareInitialization(const std::chrono::seconds &readout_interval) } // temperature calibration is done by Sensor::SetCalibration - if (device_.setTemperatureOffset(1.2f) == false) + if (device_.setTemperatureOffset(1.2f) == false) // for battery operation: 1.2 / for power supply operation: 2.0 { logger_.LogError("Failed to set temperature offset"); return false;