9个不稳定版本
0.5.1 | 2024年4月20日 |
---|---|
0.5.0 |
|
0.4.4 | 2022年6月4日 |
0.3.0 | 2022年3月31日 |
0.1.0 | 2018年6月15日 |
#77 在 嵌入式开发
每月315次下载
45KB
1K SLoC
bme280
用于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 License,版本2.0,(LICENSE-APACHE或https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT许可协议 (LICENSE-MIT或http://opensource.org/licenses/MIT)
任选其一。
贡献
除非你明确声明,否则根据Apache-2.0许可协议定义,向你提交的任何有意包含在本作品中的贡献都应如上所述双许可,而不附加任何额外条款或条件。
依赖项
~1.5MB
~39K SLoC