Skip to content

Commit

Permalink
Merge pull request #24 from arduino-libraries/aentinger-patch-1
Browse files Browse the repository at this point in the history
Fix: The right unit for a sample rate is Hz, not µT,
  • Loading branch information
facchinm authored Mar 24, 2023
2 parents 92841f5 + 9dd86b2 commit aabdaf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/SimpleMagnetometer/SimpleMagnetometer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void setup() {
}
Serial.print("Magnetic field sample rate = ");
Serial.print(IMU.magneticFieldSampleRate());
Serial.println(" uT");
Serial.println(" Hz");
Serial.println();
Serial.println("Magnetic Field in uT");
Serial.println("X\tY\tZ");
Expand Down

0 comments on commit aabdaf6

Please sign in to comment.