A Rust library and command-line tool for controlling BlinkStick USB LED devices.
BlinkStick is a smart USB LED controller that can be controlled programmatically. Visit blinkstick.com for more information about the hardware.
This has only been tested on Linux ubuntu 24.04.2 LTS. With blinkstick square.
git clone https://github.com/ejade/blinkstick-rust
cd blinkstick-rust
cargo install --path .
On Linux, you need permission to access USB devices. You can add a udev rule using the built-in command:
sudo blinkstick add-udev-rule
sudo udevadm control --reload-rules && sudo udevadm trigger
# Set to a named color
blinkstick set-color red
# Set to a hex color
blinkstick set-color "#00FF00"
# Set a specific LED (for BlinkStick Pro)
blinkstick set-color blue --index 2
# Set to a random color
blinkstick set-color random
# List all available color names
blinkstick list-colors
blinkstick pulse red --duration 1000 --steps 20
blinkstick list
blinkstick info
blinkstick off
This project is licensed under the MIT License. See the LICENSE file for details.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.