Commit 4ff49e0c authored by Eric Duminil's avatar Eric Duminil
Browse files

Moving functions from h to cpp

parent 468cba2e
Pipeline #6037 failed with stage
in 1 minute and 26 seconds
......@@ -64,6 +64,7 @@ namespace sensor {
void calibrateSensorToSpecificPPM(int32_t calibrationLevel);
void calibrateSensorRightNow(int32_t calibrationLevel);
void setAutoCalibration(int32_t autoCalibration);
void setTimer(int32_t timestep);
void initialize() {
Serial.println(F("Sensor : Senseair S8"));
......@@ -106,7 +107,6 @@ namespace sensor {
// sensor_console::defineIntCommand("calibrate!", calibrateSensorRightNow,
// F("600 (Calibrates right now, to given ppm)"));
// sensor_console::defineIntCommand("auto_calibrate", setAutoCalibration, F("0/1 (Disables/enables autocalibration)"));
// sensor_console::defineCommand("reset_scd", resetSCD, F("(Resets SCD30)"));
}
bool hasSensorSettled() {
......@@ -293,8 +293,4 @@ namespace sensor {
void calibrateSensorRightNow(int32_t calibrationLevel) {
Serial.println(F("TODO: Implement ME!"));
}
void resetSCD() {
Serial.println(F("TODO: Implement ME! (or delete me)"));
}
}
......@@ -12,8 +12,6 @@ namespace sensor {
void initialize();
bool processData();
void startCalibrationProcess();
void setTimer(int32_t timestep);
void resetSCD();
float getTemperatureOffset();
}
#endif
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