dps310 0.1.0

A platform agnostic driver to interface with the DPS310 barometric pressure & temp sensor through I2C
docs.rs failed to build dps310-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: dps310-0.1.5

DPS310 - embedded-hal I2C driver crate

A platform agnostic driver to interface with the DPS310 barometric pressure & temp sensor. This driver uses I2C via embedded-hal. Note that the DPS310 also supports SPI, however that is not (yet) implemented in this driver.

Usage

Include this crate as a dependency in your Cargo.toml

[dependencies.dps310]
version = "<version>"

Use embedded-hal implementation to get I2C, then create a driver instance

use dps310::{DPS310, self};


let address = 0x77;
let mut dps = DPS310::new(i2c, address, &dps310::Config::new()).unwrap();

dps.trigger_measurement(true, true, true).unwrap();

if dps.data_ready().unwrap() {
    let pressure = dps.read_pressure_calibrated().unwrap();
    let temp = dps.read_temp_calibrated().unwrap();
    iprintln!(stim, "pressure: {:.1} [pPa]\t temp: {:.1} [˚C]", pressure, temp);
}