MPU9250 Arduino Simple Code

From wikiluntti
Revision as of 16:44, 18 November 2024 by Mol (talk | contribs) (Created page with "== Introduction == MPU9250 Simple code == The simple code == <syntaxhighlight lang="C"> #include "MPU9250.h" MPU9250 mpu; void setup() { Serial.begin(115200); Wire.begin(); delay(2000); if (!mpu.setup(0x68)) { // change to your own address while (1) { Serial.println("MPU connection failed. Please check your connection with `connection_check` example."); delay(5000); } } } void loop() { if (mpu.upda...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

MPU9250 Simple code

The simple code

#include "MPU9250.h"

MPU9250 mpu;

void setup() {
    Serial.begin(115200);
    Wire.begin();
    delay(2000);

    if (!mpu.setup(0x68)) {  // change to your own address
        while (1) {
            Serial.println("MPU connection failed. Please check your connection with `connection_check` example.");
            delay(5000);
        }
    }
}

void loop() {
    if (mpu.update()) {
        static uint32_t prev_ms = millis();
        if (millis() > prev_ms + 25) {
            print_roll_pitch_yaw();
            prev_ms = millis();
        }
    }
}

void print_roll_pitch_yaw() {
    Serial.print("Yaw, Pitch, Roll: ");
    Serial.print(mpu.getYaw(), 2);
    Serial.print(", ");
    Serial.print(mpu.getPitch(), 2);
    Serial.print(", ");
    Serial.println(mpu.getRoll(), 2);
}


Code 2