[][src]Struct co2mon::Sensor

pub struct Sensor { /* fields omitted */ }

Sensor driver struct.

Example

let sensor = Sensor::open_default()?;
let reading = sensor.read_one()?;
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.

Example

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

pub fn read_one(&self) -> Result<SingleReading>[src]

Takes a single reading from the sensor.

Errors

An error will be returned on an I/O error or if a message could not be read or decoded.

Example

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

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

Takes a multiple readings from the sensor until the temperature and CO₂ concentration are available, and returns both.

Errors

An error will be returned on an I/O error or if a message could not be read or decoded.

Example

let sensor = Sensor::open_default()?;
let reading = sensor.read()?;
println!("{} °C, {} ppm CO₂", reading.temperature(), reading.co2());

Auto Trait Implementations

impl !Send for Sensor

impl !Sync for Sensor

Blanket Implementations

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.

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

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

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