Commit ab3e5689 authored by Eric Duminil's avatar Eric Duminil
Browse files

Removing unnecessary namespace

parent 650e68b1
Pipeline #3403 passed with stage
in 1 minute and 51 seconds
...@@ -296,7 +296,7 @@ namespace sensor { ...@@ -296,7 +296,7 @@ namespace sensor {
Serial.print(F("Setting Measurement Interval to : ")); Serial.print(F("Setting Measurement Interval to : "));
Serial.print(timestep); Serial.print(timestep);
Serial.println(F("s.")); Serial.println(F("s."));
sensor::scd30.setMeasurementInterval(timestep); scd30.setMeasurementInterval(timestep);
config::measurement_timestep = timestep; config::measurement_timestep = timestep;
led_effects::showKITTWheel(color::green, 1); led_effects::showKITTWheel(color::green, 1);
} }
...@@ -308,7 +308,7 @@ namespace sensor { ...@@ -308,7 +308,7 @@ namespace sensor {
config::co2_calibration_level = calibrationLevel; config::co2_calibration_level = calibrationLevel;
Serial.print(config::co2_calibration_level); Serial.print(config::co2_calibration_level);
Serial.println(F(" ppm.")); Serial.println(F(" ppm."));
sensor::startCalibrationProcess(); startCalibrationProcess();
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment