1
Fork 0
Find a file
2021-02-18 13:06:12 +01:00
.cargo build example in base cargo.toml with dev-dependencies 2019-05-20 16:20:34 +02:00
.circleci add versions since 1.40 2021-02-15 18:57:41 +01:00
examples set range, hpf 2021-02-18 12:27:26 +01:00
misc update status with range settings for accel, gyro 2021-02-18 13:06:12 +01:00
src set range, hpf 2021-02-18 12:27:26 +01:00
.gitignore make sure no target folder can be committed 2019-04-23 11:05:52 +02:00
Cargo.toml bump dependencies, rm buggy bias calc 2021-02-15 18:45:50 +01:00
LICENSE Update LICENSE 2019-04-16 00:45:44 +02:00
README.md bump dependencies, rm buggy bias calc 2021-02-15 18:45:50 +01:00

mpu6050 crates.io CircleCI

no_std driver for the MPU6050 6-axis IMU

Datasheet | Register Map Sheet

Visualization options for testing and development in viz branch

Basic usage

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);
  }
}

Linux example (Raspberry Pi 3B)

Cross compile

Requirements:

$ apt-get install -qq gcc-arm-linux-gnueabihf libc6-armhf-cross libc6-dev-armhf-cross

Rustup:

$ rustup target add armv7-unknown-linux-gnueabihf

To configure the linker use .cargo/config file

cross-compile with

$ cargo build --examples --target=armv7-unknown-linux-gnueabihf

Copy binary to rpi, once steps below are successfully completed.

On RPi (RPi OS lite, 15.02.21)

Install i2c dependencies
$ sudo apt-get install i2c-tools libi2c-dev python-smbus -y
Enable and load kernel modules at boot
  1. edit /etc/modules and add
    i2c-dev
    i2c-bcm2708
    
  2. edit /boot/config.txt and add/uncomment
    dtparam=i2c_arm=on
    dtparam=i2c1=on
    
  3. reboot
  4. check if working with sudo i2cdetect -y 1 or sudo i2cdetect -y 0. You should bet a signal similar to this
      0 1 2 3 4 5 6 7 8 9 a b c d e f
    00: -- -- -- -- -- -- -- -- -- -- -- -- --
    10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
    20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
    30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
    40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
    50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
    60: -- -- -- -- -- -- -- -- -- -- -- 68 -- -- -- --
    70: -- -- -- -- -- -- -- --
    
  5. Wire up
    RPi GPIO MPU6050
    5V Power VCC
    Ground GND
    GPIO 2 SCL
    GPIO 3 SDA

TODO