Pure rust implementation to read out the Winsen MH-Z19C CO2 sensor.
This crate provides an API to read-out the nondispersive infrared (NDIR) CO₂ sensor MH-Z19C by Winsen via the serial (UART) interface.
The provided API supports non-blocking usage and is no_std
.
```rust use mh_z19c::MhZ19C; use nb::block;
let mut co2sensor = MhZ19C::new(uart); let co2 = block!(co2sensor.readco2ppm())?; println!("CO₂ concenration: {}ppm", co2); ```