Arjun Gopkumar
Published © GPL3+

MPU6050-Accelerometer+Gyroscope Sensor Basics

How to get started with the MPU6050 module

BeginnerProtip15 minutes758
MPU6050-Accelerometer+Gyroscope Sensor Basics

Story

Read more

Schematics

uploads2ftmp2fd1dbc244-9b7f-4d41-b83e-17eeb221fa472fsc_6ECwLqCxGX.png

Code

Code snippet #3

Plain text
void setup() {
  Serial.begin(9600);
  Wire.begin();
  mpu6050.begin();
  mpu6050.calcGyroOffsets(true);
}

Code snippet #4

Plain text
void loop() {
  mpu6050.update();
  Serial.print("angleX : ");
  Serial.print(mpu6050.getAngleX());
  Serial.print("\tangleY : ");
  Serial.print(mpu6050.getAngleY());
  Serial.print("\tangleZ : ");
  Serial.println(mpu6050.getAngleZ());
}

Credits

Arjun Gopkumar
5 projects • 1 follower
Engineering student , I create just because I can and to possibly make the world a better place . I hack for the love of it.
Contact

Comments

Please log in or sign up to comment.