SCD30 modbus driver
Implementation of an SCD30 sensor driver using the modbus protocol written in rust. This driver is written async/await style. Currently the smol runtime is supported.
For more information about the sensor here.
Example
let serial = ...; // serial bus to use
let mut driver = new;
driver.set_measurement_interval.await.unwrap;
driver.start_measuring.await.unwrap;
let measurements = driver.read.await.unwrap.unwrap;