blinkstick-rs provides an interface to control any BlinkStick device using Rust.
:exclamation: For the non-published updates, please refer to function documentation for the latest examples.
Sets the color of a single led to red ```rust use blinkstick_rs::{BlinkStick, Color};
let blinkstick = BlinkStick::new().unwrap();
blinkstick.setledcolor(0, Color {r: 50, g: 0, b: 0}); ```
Sets a random color to every led on the BlinkStick device ```rust use blinkstick_rs::{BlinkStick, Color};
let blinkstick = BlinkStick::new().unwrap();
let mut colors: Vec
Makes the 1st, 3rd, 5th LED blink 2 times, once every 200 milliseconds, with a yellow glow ```rust use blinkstick_rs::{BlinkStick, Color};
let blinkstick = BlinkStick::new().unwrap();
blinkstick.blinkmultipleledscolor(&vec![1, 3, 5], std::time::Duration::frommillis(200), 2, Color {r: 50, g: 50, b: 0}).unwrap(); ```
Makes every led pulse between being turned off and a green color ```rust use blinkstick_rs::{BlinkStick, Color};
let blinkstick = BlinkStick::new().unwrap();
let color = Color {r: 0, g: 25, b: 0}; blinkstick.pulseallledscolor(std::time::Duration::fromsecs(2), 50, Color {r: 0, g: 25, b: 0}).unwrap(); ```
Makes the first led transform from a red color into a green color over a period of five seconds, with 50 color updates. ```rust use blinkstick_rs::{BlinkStick, Color};
let blinkstick = BlinkStick::new().unwrap();
blinkstick.setledcolor(1, Color {r: 50, g: 0, b: 0}).unwrap(); blinkstick.transformledcolor(1, std::time::Duration::from_secs(5), 50, Color {r: 0, g: 50, b: 0}).unwrap(); ```
Tests are only runnable when a BlinkStick device is plugged in. Furthermore, tests should be run using cargo test -- --test-threads=1
or they might fail.