Struct mpu9250::ImuMeasurements[][src]

pub struct ImuMeasurements {
    pub accel: Vector3<f32>,
    pub gyro: Vector3<f32>,
    pub temp: f32,
}

Scaled IMU measurements converted to units

Fields

Accelerometer measurements (g)

Gyroscope measurements (rad/s)

Temperature sensor measurement (C)

Trait Implementations

impl Clone for ImuMeasurements
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ImuMeasurements
[src]

impl Debug for ImuMeasurements
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations