[][src]Struct pms700x::SensorData

pub struct SensorData {
    pub pm10: u16,
    pub pm25: u16,
    pub pm100: u16,
    pub pm10_atmos: u16,
    pub pm25_atmos: u16,
    pub pm100_atmos: u16,
    pub pm03_count: u16,
    pub pm05_count: u16,
    pub pm10_count: u16,
    pub pm25_count: u16,
    pub pm50_count: u16,
    pub pm100_count: u16,
}

Fields

pm10: u16

PM1.0 concentration in µg/m³, corrected for standard atmosphere

pm25: u16

PM25 concentration in µg/m³, corrected for standard atmosphere

pm100: u16

PM10 concentration in µg/m³, corrected for standard atmosphere

pm10_atmos: u16

PM1.0 concentration in µg/m³, in current atmosphere

pm25_atmos: u16

PM25 concentration in µg/m³, in current atmosphere

pm100_atmos: u16

PM10 concentration in µg/m³, in current atmosphere

pm03_count: u16

Number of >0.3µm particles per 0.1L

pm05_count: u16

Number of >0.5µm particles per 0.1L

pm10_count: u16

Number of >1.0µm particles per 0.1L

pm25_count: u16

Number of >2.5µm particles per 0.1L

pm50_count: u16

Number of >5.0µm particles per 0.1L

pm100_count: u16

Number of >10.0µm particles per 0.1L

Implementations

impl SensorData[src]

pub fn from_raw(raw: &[u8; 32]) -> Self[src]

Trait Implementations

impl Debug for SensorData[src]

impl Default for SensorData[src]

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.