#温度湿度 #压力传感器 #湿度传感器 #压力 #温度 #湿度 #温度传感器

no-std bme280

用于Bosch BME280温度、湿度和大气压力传感器以及Bosch BMP280温度和大气压力传感器的Rust设备驱动程序

9个不稳定版本

0.5.1 2024年4月20日
0.5.0 2024年1月29日
0.4.4 2022年6月4日
0.3.0 2022年3月31日
0.1.0 2018年6月15日

#77嵌入式开发

Download history 207/week @ 2024-04-25 103/week @ 2024-05-02 48/week @ 2024-05-09 44/week @ 2024-05-16 46/week @ 2024-05-23 51/week @ 2024-05-30 60/week @ 2024-06-06 63/week @ 2024-06-13 49/week @ 2024-06-20 31/week @ 2024-06-27 15/week @ 2024-07-04 23/week @ 2024-07-11 63/week @ 2024-07-18 121/week @ 2024-07-25 76/week @ 2024-08-01 52/week @ 2024-08-08

每月315次下载

MIT/Apache

45KB
1K SLoC

bme280

Crates.io Crates.io Released API docs

用于Bosch BME280温度、湿度和大气压力传感器以及Bosch BMP280温度和大气压力传感器的Rust设备驱动程序。

使用方法

use linux_embedded_hal as hal;

use linux_embedded_hal::{Delay, I2cdev};
use bme280::i2c::BME280;

// using Linux I2C Bus #1 in this example
let i2c_bus = I2cdev::new("/dev/i2c-1").unwrap();
let mut delay = /* ..delay provider */
// initialize the BME280 using the primary I2C address 0x76
let mut bme280 = BME280::new_primary(i2c_bus);

// or, initialize the BME280 using the secondary I2C address 0x77
// let mut bme280 = BME280::new_secondary(i2c_bus);

// or, initialize the BME280 using a custom I2C address
// let bme280_i2c_addr = 0x88;
// let mut bme280 = BME280::new(i2c_bus, bme280_i2c_addr);

// initialize the sensor
bme280.init(&mut delay).unwrap();

// measure temperature, pressure, and humidity
let measurements = bme280.measure(&mut delay).unwrap();

println!("Relative Humidity = {}%", measurements.humidity);
println!("Temperature = {} deg C", measurements.temperature);
println!("Pressure = {} pascals", measurements.pressure);

Serde支持

要启用测量结构体的可选serde序列化支持,只需在Cargo.toml中启用serde功能即可

[dependencies]
bme280 = { version = "0.2", features = ["serde"] }

许可协议

许可协议为以下两种之一

任选其一。

贡献

除非你明确声明,否则根据Apache-2.0许可协议定义,向你提交的任何有意包含在本作品中的贡献都应如上所述双许可,而不附加任何额外条款或条件。

依赖项

~1.5MB
~39K SLoC