@@ -22,13 +22,15 @@ void setup()
2222 Serial.println (" OTOS connected!" );
2323
2424 // The IMU on the OTOS includes a gyroscope and accelerometer, which could
25- // have an offset. The OTOS performs a quick calibration when it powers up,
26- // but it is recommended to perform a more thorough calibration at the start
27- // of your programs. Note that the sensor must be completely stationary and
28- // flat during calibration! When calling calibrateImu(), you can specify the
29- // number of samples to take and whether to wait until the calibration is
30- // complete. If no parameters are provided, it will take 255 samples and
31- // wait until done; each sample takes about 1.2ms, so about 306ms total
25+ // have an offset. Note that as of firmware version 1.0, the calibration
26+ // will be lost after a power cycle; the OTOS performs a quick calibration
27+ // when it powers up, but it is recommended to perform a more thorough
28+ // calibration at the start of all your programs. Note that the sensor must
29+ // be completely stationary and flat during calibration! When calling
30+ // calibrateImu(), you can specify the number of samples to take and whether
31+ // to wait until the calibration is complete. If no parameters are provided,
32+ // it will take 255 samples and wait until done; each sample takes about
33+ // 1.2ms, so about 306ms total
3234 myOtos.calibrateImu ();
3335 // myOtos.calibrateImu(255, true);
3436
0 commit comments