1 stable release

Uses old Rust 2015

1.0.0 Feb 8, 2018

#1732 in Hardware support

Download history 25/week @ 2024-02-19 30/week @ 2024-02-26 15/week @ 2024-03-04 22/week @ 2024-03-11 12/week @ 2024-03-18 13/week @ 2024-03-25 42/week @ 2024-04-01

92 downloads per month

MIT license

8KB
119 lines

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

lib.rs:

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

Dependencies

~0–255KB