We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a29ab2 commit 42692beCopy full SHA for 42692be
examples/Example4_DisableCalibrate/Example4_DisableCalibrate.ino
@@ -36,6 +36,12 @@ void setup()
36
;
37
}
38
39
+ Serial.print("Auto calibration set to ");
40
+ if (airSensor.getAutoSelfCalibration() == true)
41
+ Serial.println("true");
42
+ else
43
+ Serial.println("false");
44
+
45
//The SCD30 has data ready every two seconds
46
47
@@ -58,4 +64,4 @@ void loop()
58
64
Serial.println("Waiting for new data");
59
65
60
66
delay(500);
61
-}
67
+}
0 commit comments