[][src]Struct co2mon::Sensor

pub struct Sensor { /* fields omitted */ }

Sensor driver struct.

Example

let sensor = Sensor::open_default()?;
let reading = sensor.read()?;
println!("{:?}", reading);

Methods

impl Sensor[src]

pub fn open_default() -> Result<Self>[src]

Opens the sensor device using the default USB Vendor ID (0x04d9) and Product ID (0xa052) values.

When multiple devices are connected, the first one will be used.

pub fn read(&self) -> Result<Measurement>[src]

Takes a measurement from the sensor.

Auto Trait Implementations

impl !Send for Sensor

impl !Sync for Sensor

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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