pub struct RawMeasurement {
pub relative_humidity: f32,
pub temperature: f32,
pub voc: u16,
pub nox: u16,
pub co2: u16,
}Expand description
One raw measurement taken from the SEN66. Use
read_measured_raw_values to retrieve it.
Fields§
§relative_humidity: f32Relative Humidity in %.
temperature: f32Temperature in °C.
voc: u16VOC ticks without scale facot
nox: u16NOx ticks without scale facot
co2: u16Uninterpolated CO2 concentration in ppm, updated every 5 seconds.
Trait Implementations§
Source§impl Debug for RawMeasurement
impl Debug for RawMeasurement
Source§impl PartialEq for RawMeasurement
impl PartialEq for RawMeasurement
Source§impl TryFrom<&[u8]> for RawMeasurement
impl TryFrom<&[u8]> for RawMeasurement
impl StructuralPartialEq for RawMeasurement
Auto Trait Implementations§
impl Freeze for RawMeasurement
impl RefUnwindSafe for RawMeasurement
impl Send for RawMeasurement
impl Sync for RawMeasurement
impl Unpin for RawMeasurement
impl UnwindSafe for RawMeasurement
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more