#sensor #mh-z19

no-std mh-zx-driver

MH-Z*系列(MH-Z14/Z19/Z19B)CO2传感器驱动程序,基于embedded-hal基本操作构建

2个不稳定版本

0.2.0 2020年7月20日
0.1.0 2020年4月15日

#1443 in 嵌入式开发

Apache-2.0

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