rs_ws281x 0.5.1

Wrapper for ws281x library using bindgen to track upstream
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate serde;
#[macro_use]
extern crate serde_derive;

pub mod bindings;
mod channel;
mod controller;
mod util;

pub use channel::ChannelBuilder;
pub use controller::{Controller, ControllerBuilder};
pub use util::{RawColor, Result, StripType, WS2811Error};