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;

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