Skip to content

Commit

Permalink
fix(docs):typos
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alatorre <[email protected]>
  • Loading branch information
xpeqex authored Oct 3, 2024
1 parent 9c85046 commit 27b0bd5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/MPU6050_raw/MPU6050_raw.ino
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
MPU6050 Raw
A code for obtaining raw data from the MPU6050 module with option to
A code for obtaining raw data from the MPU6050 module with the option to
modify the data output format.
Find the full MPU6050 library docummentation here:
Find the full MPU6050 library documentation here:
https://github.com/ElectronicCats/mpu6050/wiki
*/
#include "I2Cdev.h"
Expand Down Expand Up @@ -80,7 +80,7 @@ void setup() {
}

void loop() {
/* Read raw accel/gyro dara from the module. Other methods commented*/
/* Read raw accel/gyro data from the module. Other methods commented*/
mpu.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
//mpu.getAcceleration(&ax, &ay, &az);
//mpu.getRotation(&gx, &gy, &gz);
Expand Down Expand Up @@ -108,4 +108,4 @@ void loop() {
/*Blink LED to indicate activity*/
blinkState = !blinkState;
digitalWrite(LED_BUILTIN, blinkState);
}
}

0 comments on commit 27b0bd5

Please sign in to comment.