Crates.io | bmp280-ehal |
lib.rs | bmp280-ehal |
version | 0.0.6 |
source | src |
created_at | 2018-10-17 17:46:13.734687 |
updated_at | 2023-05-27 22:21:52.550049 |
description | A platform agnostic driver to interface with the BMP280 pressure sensor |
homepage | |
repository | https://github.com/copterust/bmp280 |
max_upload_size | |
id | 91185 |
size | 14,488 |
bmp280
no_std driver for the bmp280 (pressure sensor).
BMP280
;
Include library as a dependency in your Cargo.toml :
[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 bmp = bmp280_ehal::BMP280::new(i2c)?;
// to get pressure:
let pres = bmp.pressure();
println!("{:?}", pres);
Number of examples can be found in proving-ground repo.
API Docs available on docs.rs.