Implementation of an ENS160 sensor driver written in rust. This sensor can measure TVOC
and ECO2
. Implementation is inspired by the driver implementation by dfrobots written in python.
For more information about the sensor here.
```rust let i2c = ...; // I2C bus to use
let mut device = Ens160::new(i2c); device.reset().unwrap(); sleep(250) device.operational().unwrap(); sleep(50)
loop { if let Ok(status) = device.status() { if status.dataisready() { let tvoc = device.tvoc().unwrap(); let eco2 = device.eco2().unwrap(); // from eCO2 let airqualityindex = AirqualityIndex::tryfrom(eco2).unwrap(); // directly let airqualityindex = device.airqualityindex().unwrap(); } } }
let i2c = device.release(); // destruct driver to use bus with other drivers ```