bmp5xx 1.0.0

True-to-spec async I2C driver for the BMP580/BMP581/BMP585 barometric pressure sensors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2026 Olivér Pirger
// SPDX-License-Identifier: GPL-3.0-or-later

#[derive(Debug)]
pub enum Error {
    ReadError,
    WriteError,
    InvalidId,
    NotReady,
    Timeout,
}

pub type Result<T> = core::result::Result<T, Error>;