bmp280-ehal 0.0.2

A platform agnostic driver to interface with the BMP280 pressure sensor
Documentation

bmp280

no_std driver for the bmp280 (pressure sensor).

Build Status

What works

  • Pressure sensor

Supported chips

  • BMP280;

Basic usage

Include library as a dependency in your Cargo.toml crates.io:

[dependencies.bmp280-ehal]
version = "<version>"

Use embedded-hal implementation to get I2C handle and delay then create bmp280 handle:

extern crate bmp280_ehal; // or just use bmp280; if 2018 edition is used.

// to create sensor with default configuration:
let mut lsm = bmp280_ehal::BMP280::new(i2c)?;
// to get pressure:
let pres = ps.pressure();
println!("{:?}", pres);

More examples

Number of examples can be found in proving-ground repo.

Documentation

API Docs available on docs.rs.

License