wiringpi 0.1.1

An API wrapper for WiringPi, implementing the most important functions and provides a bit of type system convenience. See README.md for Raspberry Pi build instructions.
docs.rs failed to build wiringpi-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: wiringpi-0.2.4

#WiringPi Bindings for Rust

An API wrapper for WiringPi to make it accessible using Rust. It implements the most important functions and provides a bit of type system convenience.

Online documentation

Add the following lines to your Cargo.io to use rust-wiringpi:

[dependencies]
wiringpi = "0.1"

or add these lines to opt in to Rust-nightly features:

[dependencies.wiringpi]
verson = "0.1"
features = ["nightly"]

##Example: Flashing Light

extern crate wiringpi;

use wiringpi::pin::{High, Low};
use wiringpi::time::delay;

fn main() {
	//Setup WiringPi with its own pin numbering order
    let pi = wiringpi::setup().expect("WiringPi setup failed");

    //Use WiringPi pin 0 as output
    let pin = pi.output_pin(0);

    loop {
    	//Set pin 0 to high and wait one second
        pin.digital_write(High);
        delay(1000);

    	//Set pin 0 to low and wait one second
        pin.digital_write(Low);
        delay(1000);
    }
}

##Cross Compiling Using Cargo

This project can be cross compiled using Cargo. Follow these instructions And use ./cross64 build or ./cross32 build, depending on your system, to check if everything builds as expected.