1234567891011121314151617181920212223242526272829 |
- #include "MPU9250.h"
- #include "eeprom_utils.h"
- MPU9250 mpu;
- void setup() {
- Serial.begin(115200);
- Wire.begin();
- delay(2000);
- mpu.setup(0x68); // change to your own address
- delay(5000);
- // calibrate when you want to
- mpu.calibrateAccelGyro();
- mpu.calibrateMag();
- // save to eeprom
- saveCalibration();
- // load from eeprom
- loadCalibration();
- mpu.printCalibration();
- }
- void loop() {
- }
|