PhilipTrauner / rust-mcp3008

A MCP3008 sensor driver in Rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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());
    }
}

About

A MCP3008 sensor driver in Rust.

License:MIT License


Languages

Language:Rust 100.0%