Crates.io | bmp085-180-rs |
lib.rs | bmp085-180-rs |
version | 1.0.0 |
source | src |
created_at | 2024-05-15 11:50:23.15364 |
updated_at | 2024-06-09 14:52:18.454293 |
description | Driver for BMP085 & BMP180 sensors. |
homepage | |
repository | https://github.com/marti157/bmp085-180-rs |
max_upload_size | |
id | 1240953 |
size | 31,329 |
bmp085-180-rs
is a no-std
Rust driver implementation for the BMP085 & BMP180 sensors using embedded-hal
traits, for integration with most target platforms.
The Bosch BMP085 & BMP180 are barometric pressure & temperature sensor modules. Both are no longer in production.
$ cargo add bmp085-180-rs
Feature | Description |
---|---|
sync |
Blocking transactions |
async |
Non-blocking transactions |
If you require async
support, make sure to enable the following feature in your Cargo.toml
:
bmp085-180-rs = { version = "1.0.0", features = [ "async" ] }
The default is sync
.
See examples for both blocking & async usage with esp32.
The MIT License (MIT). Please see LICENSE for more information.