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.
2 parents 5852be5 + f242b29 commit 2f4edf7Copy full SHA for 2f4edf7
examples/lsm9doftest/lsm9doftest.ino
@@ -49,6 +49,9 @@ void setup()
49
Serial.println("Found LSM9DS0 9DOF");
50
Serial.println("");
51
52
+ Serial.println("Setting up LSM9DS0 9DOF");
53
+ setupSensor();
54
+ delay(1);
55
}
56
57
void loop()
@@ -66,4 +69,4 @@ void loop()
66
69
Serial.print("Z: "); Serial.println((int)lsm.gyroData.z); Serial.println(" ");
67
70
Serial.print("Temp: "); Serial.print((int)lsm.temperature); Serial.println(" ");
68
71
delay(200);
-}
72
+}
0 commit comments