pixtend 0.1.0

Rust library for the PiXtend V2L board
Documentation
1
2
3
4
5
6
7
8
9
extern crate pixtend;

use pixtend::{PiXtend, Watchdog};

fn main() {
    let mut pixtend = PiXtend::new().unwrap();
    pixtend.set_watchdog(Watchdog::Activated8s);
    pixtend.read_write().unwrap();
}