[][src]Struct mh_zx_driver::Measurement

pub struct Measurement {
    pub co2: u16,
    pub temp: u8,
    pub calib_ticks: u8,
    pub calib_cycles: u8,
}

A struct representing measurement data returned by sensor as a response to the READ_CO2 command.

Fields

co2: u16

CO2 concentration, PPM.

temp: u8

Temperature, degrees Celsius plus 40.

calib_ticks: u8

If ABC is turned on - counter in "ticks" within a calibration cycle.

calib_cycles: u8

If ABC is turned on - the nuumber of performed calibration cycles.

Trait Implementations

impl TryFrom<Packet> for Measurement[src]

type Error = InvalidResponse

The type returned in the event of a conversion error.

Auto Trait Implementations

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, 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.