2个不稳定版本
0.2.0 | 2020年7月20日 |
---|---|
0.1.0 | 2020年4月15日 |
#1443 in 嵌入式开发
20KB
301 行
mh-zx-driver
MH-Z*系列CO2传感器驱动程序,基于embedded-hal
基本操作构建。这是一个no_std
包,适用于裸机使用。API是非阻塞的(与nb
包兼容)。
支持的设备
代码已与MH-Z19B传感器测试,MH-Z*系列中的其他传感器支持相同的UART协议。
数据表
更多资源
lib.rs
:
MH-Z* CO2传感器驱动程序
MH-Z*系列CO2传感器驱动程序,基于embedded-hal
基本操作构建。这是一个no_std
包,适用于裸机使用。
使用方法
Sensor
结构体公开了发送命令(write_packet_op
)到传感器并读取响应(read_packet_op
)的方法。
示例
use mh_zx_driver::{commands, Sensor, Measurement};
use nb::block;
use core::convert::TryInto;
let mut sensor = Sensor::new(uart);
// Send command to the sensor.
{
let mut op = sensor.write_packet_op(commands::READ_CO2);
block!(op()).unwrap();
};
// Read the response.
let mut packet = Default::default();
{
let mut op = sensor.read_packet_op(&mut packet);
block!(op()).unwrap();
}
let meas: Measurement = packet.try_into().unwrap();
println!("CO2 concentration: {}", meas.co2);
Future
支持
通过在Cargo.toml
中启用async
功能,可以激活对async
/await
的实验性支持。它向Sensor
结构体添加异步方法。从UART的2个“部分”构建Sensor
接口。
依赖
~0–10MB
~83K SLoC