icewind1991 / mhz19-rs

Accessing MH-Z19 CO₂ sensor over serial bus using rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MH-Z19-rs

Accessing MH-Z19 CO₂ sensor over serial bus using rust

Usage

use mhz19::MHZ19;

fn main() {
    let mut mhz19 = MHZ19::open("/dev/ttyUSB0").unwrap();
    println!("CO₂ readout: {} ppm", mhz19.read().unwrap());
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Accessing MH-Z19 CO₂ sensor over serial bus using rust

License:Apache License 2.0


Languages

Language:Rust 100.0%