7 releases

0.1.6 Nov 3, 2022
0.1.5 Jan 10, 2022
0.1.4 Feb 20, 2021
0.1.3 Jun 6, 2019
0.1.2 Apr 24, 2019

#534 in Hardware support

Download history 186/week @ 2023-12-11 280/week @ 2023-12-18 18/week @ 2023-12-25 251/week @ 2024-01-01 191/week @ 2024-01-08 107/week @ 2024-01-15 227/week @ 2024-01-22 78/week @ 2024-01-29 48/week @ 2024-02-05 172/week @ 2024-02-12 66/week @ 2024-02-19 169/week @ 2024-02-26 98/week @ 2024-03-04 96/week @ 2024-03-11 57/week @ 2024-03-18 111/week @ 2024-03-25

367 downloads per month
Used in 3 crates

MIT license

37KB
584 lines

mpu6050 crates.io CircleCI

no_std driver for the MPU6050 6-axis IMU

What Works

  • Reading the accelerometer, gyroscope, temperature sensor
    • raw
    • scaled
    • roll/pitch estimation
  • Motion Detection
  • Setting Accel/Gyro Ranges/Sensitivity
  • Setting Accel HPF/LPF

Basic usage

To use this driver you must provide a concrete embedded_hal implementation. Here's a linux_embedded_hal example

use mpu6050::*;
use linux_embedded_hal::{I2cdev, Delay};
use i2cdev::linux::LinuxI2CError;

fn main() -> Result<(), Mpu6050Error<LinuxI2CError>> {
  let i2c = I2cdev::new("/dev/i2c-1")
          .map_err(Mpu6050Error::I2c)?;

  let mut delay = Delay;
  let mut mpu = Mpu6050::new(i2c);

  mpu.init(&mut delay)?;

  loop {
    // get roll and pitch estimate
    let acc = mpu.get_acc_angles()?;
    println!("r/p: {:?}", acc);

    // get temp
    let temp = mpu.get_temp()?;
    println!("temp: {:?}c", temp);

    // get gyro data, scaled with sensitivity 
    let gyro = mpu.get_gyro()?;
    println!("gyro: {:?}", gyro);

    // get accelerometer data, scaled with sensitivity
    let acc = mpu.get_acc()?;
    println!("acc: {:?}", acc);
  }
}

Dependencies

~3.5MB
~66K SLoC