Struct embedded_sensors::mpu925x::Mpu925x[][src]

pub struct Mpu925x<I2C, AHRS> where
    I2C: Read + Write,
    AHRS: Ahrs<f32>, 
{ /* fields omitted */ }

Implementations

impl<I2C, AHRS, I2cError> Mpu925x<I2C, AHRS> where
    I2C: Read<Error = I2cError> + Write<Error = I2cError>,
    AHRS: Ahrs<f32>, 
[src]

pub fn read(&mut self, i2c: &mut I2C) -> Result<(), I2cError>[src]

pub fn acceleration(&self) -> Vector3<f32>[src]

pub fn angular_velocity(&self) -> Vector3<f32>[src]

pub fn magnetic_field(&self) -> Vector3<f32>[src]

impl<I2C, I2cError> Mpu925x<I2C, Madgwick> where
    I2C: Read<Error = I2cError> + Write<Error = I2cError>, 
[src]

pub fn new<DELAY>(
    ak_addr: u8,
    mpu_addr: u8,
    i2c: &mut I2C,
    delay: &mut DELAY
) -> Result<Self, I2cError> where
    DELAY: DelayMs<u16>, 
[src]

pub fn with_configuration<DELAY>(
    ak_addr: u8,
    mpu_addr: u8,
    i2c: &mut I2C,
    delay: &mut DELAY,
    cfg: Config
) -> Result<Self, I2cError> where
    DELAY: DelayMs<u16>, 
[src]

pub fn calibrate_mpu<DELAY>(
    &mut self,
    i2c: &mut I2C,
    delay: &mut DELAY
) -> Result<(), I2cError> where
    DELAY: DelayMs<u16>, 
[src]

pub fn calibrate_ak<DELAY>(
    &mut self,
    i2c: &mut I2C,
    delay: &mut DELAY
) -> Result<(), I2cError> where
    DELAY: DelayMs<u16>, 
[src]

pub fn rotation(&self) -> Quaternion<f32>[src]

impl<I2C, I2cError> Mpu925x<I2C, Mahony> where
    I2C: Read<Error = I2cError> + Write<Error = I2cError>, 
[src]

pub fn new<DELAY>(
    ak_addr: u8,
    mpu_addr: u8,
    i2c: &mut I2C,
    delay: &mut DELAY
) -> Result<Self, I2cError> where
    DELAY: DelayMs<u16>, 
[src]

pub fn with_configuration<DELAY>(
    ak_addr: u8,
    mpu_addr: u8,
    i2c: &mut I2C,
    delay: &mut DELAY,
    cfg: Config
) -> Result<Self, I2cError> where
    DELAY: DelayMs<u16>, 
[src]

pub fn rotation(&self) -> Quaternion<f32>[src]

Auto Trait Implementations

impl<I2C, AHRS> Send for Mpu925x<I2C, AHRS> where
    AHRS: Send,
    I2C: Send

impl<I2C, AHRS> Sync for Mpu925x<I2C, AHRS> where
    AHRS: Sync,
    I2C: Sync

impl<I2C, AHRS> Unpin for Mpu925x<I2C, AHRS> where
    AHRS: Unpin,
    I2C: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,