You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
419 B
22 lines
419 B
|
|
#include <MPU6050_tockn.h>
|
|
#include <Wire.h>
|
|
|
|
MPU6050 mpu6050(Wire);
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
Wire.begin();
|
|
mpu6050.begin();
|
|
mpu6050.calcGyroOffsets(true);
|
|
}
|
|
|
|
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());
|
|
}
|
|
|