mcp3008

Crates.iomcp3008
lib.rsmcp3008
version1.0.0
sourcesrc
created_at2018-02-08 17:17:13.851767
updated_at2018-02-08 17:17:13.851767
descriptionA MCP3008 sensor driver for Rust.
homepage
repositoryhttps://github.com/PhilipTrauner/rust-mcp3008
max_upload_size
id50216
size7,717
Philip Trauner (PhilipTrauner)

documentation

README

rust-mcp3008

MCP3008 A/D converter

rust-mcp3008 is a rewrite of the excellent Adafruit_Python_MCP3008 Python library in Rust.

Usage

Cargo.toml
[dependencies]
mcp3008 = "1.0.0"

extern crate mcp3008;

use mcp3008::Mcp3008;

fn main() {
    if let Ok(mut mcp3008) = Mcp3008::new("/dev/spidev0.0") {
        println!("{}", mcp3008.read_adc(0).unwrap());
    }
}
Commit count: 2

cargo fmt