Commit 0408e1ae authored by Käppler's avatar Käppler
Browse files

Debug: Add serial console command for SCD30 reset

parent 8fd43ec4
......@@ -107,6 +107,7 @@ 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("resetscd", resetSCD30, F("Reset SCD30"));
}
bool hasSensorSettled() {
......@@ -322,4 +323,8 @@ namespace sensor {
calibrateAndRestart();
}
}
void resetSCD30() {
scd30.reset();
}
}
......@@ -33,5 +33,6 @@ namespace sensor {
void calibrateSensorToSpecificPPM(int32_t calibrationLevel);
void calibrateSensorRightNow(int32_t calibrationLevel);
void setAutoCalibration(int32_t autoCalibration);
void resetSCD30();
}
#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