1个不稳定版本
0.1.0 | 2020年5月20日 |
---|
#1077 在 硬件支持
14KB
197 行
rust-mcp3208
rust-mcp3208
是一个通过SPI读取MCP3208 ADC值的库。
用法
Cargo.toml
[dependencies]
mcp3208 = "1.0.0"
use mcp3208::{Mcp3208, Channel};
/// outputs the raw adc values of all channels
fn main() {
if let Ok(mut mcp3208) = Mcp3208::new("/dev/spidev0.0") {
Channel::VALUES.iter().for_each(|&channel| {
println!("channel #{}: {}", channel as u8, mcp3208.read_adc_single(channel).unwrap());
});
}
}
lib.rs
:
rust-mcp3208
是一个通过SPI读取MCP3208 ADC值的库。
依赖项
~0–255KB