#bmp180 #压力 #压力传感器 #驱动程序 #温度

bmp180-driver

BMP180数字压力传感器的驱动程序

2 个版本

0.1.1 2024年5月25日
0.1.0 2024年5月25日

#359 in 硬件支持

MIT 许可证

16KB
253

BMP180 驱动程序

此库提供与BMP180压力传感器交互的接口。

安装

您可以通过Cargo安装此包

cargo add bmp180-driver

然后,您可以在代码中使用此库,如下所示

use std::error::Error;
use bmp180_driver::{Common, Resolution, BMP180};

use esp_idf_svc::hal::delay::FreeRtos;
use esp_idf_svc::hal::i2c::config::Config;
use esp_idf_svc::hal::i2c::I2cDriver;
use esp_idf_svc::hal::prelude::Peripherals;

fn main() -> Result<(), Box<dyn Error>> {
    // Initialize peripherals
    let peripherals = Peripherals::take()?;

    // Define SDA and SCL pins
    let sda = peripherals.pins.gpio6;
    let scl = peripherals.pins.gpio5;

    // Initialize I2C driver
    let i2c = I2cDriver::new(peripherals.i2c0, sda, scl, &Config::default())?;

    // Create BMP180 sensor instance
    let mut sensor = BMP180::new(i2c, FreeRtos);

    // Check connection to the sensor
    sensor.check_connection()?;

    // Initialize the sensor
    let mut sensor = sensor.initialize()?;

    // Continuously read and print sensor data
    loop {
        let (temperature, pressure, altitude) = sensor.read_all(Resolution::UltraHighResolution)?;

        println!("Temperature: {} °C", temperature);
        println!("Pressure: {} Pa", pressure);
        println!("Altitude: {} meters", altitude);
    }
}

参考资料

许可证

MIT 许可证(MIT)。有关更多信息,请参阅许可证文件

依赖项

~56KB