diff --git a/ampel-firmware/co2_sensor.cpp b/ampel-firmware/co2_sensor.cpp
index 5795697b05eb325ae2f4e8822f5f994bcffa043a..e532065bbb517f9b12ac3a1a9fc5ca603b7519fd 100644
--- a/ampel-firmware/co2_sensor.cpp
+++ b/ampel-firmware/co2_sensor.cpp
@@ -80,13 +80,6 @@ namespace sensor {
 
     switchState(BOOTUP);
 
-    // SCD30 has its own timer.
-    //NOTE: The timer seems to be inaccurate, though, possibly depending on voltage. Should it be offset?
-    Serial.print(F("Setting SCD30 timestep to "));
-    Serial.print(config::measurement_timestep);
-    Serial.println(" s.");
-    scd30.setMeasurementInterval(config::measurement_timestep); // [s]
-
     Serial.print(F("Setting temperature offset to -"));
     Serial.print(abs(config::temperature_offset));
     Serial.println(" K.");
@@ -100,6 +93,14 @@ namespace sensor {
     Serial.print(F("Auto-calibration is "));
     Serial.println(config::auto_calibrate_sensor ? "ON." : "OFF.");
 
+    // SCD30 has its own timer.
+    //NOTE: The timer seems to be inaccurate, though, possibly depending on voltage. Should it be offset?
+    Serial.println();
+    Serial.print(F("Setting SCD30 timestep to "));
+    Serial.print(config::measurement_timestep);
+    Serial.println(" s.");
+    scd30.setMeasurementInterval(config::measurement_timestep); // [s]
+
     sensor_console::defineIntCommand("co2", setCO2forDebugging, F(" 1500 (Sets co2 level, for debugging purposes)"));
     sensor_console::defineIntCommand("timer", setTimer, F(" 30 (Sets measurement interval, in s)"));
     sensor_console::defineCommand("calibrate", startCalibrationProcess, F(" (Starts calibration process)"));