20 releases (8 breaking)

new 0.9.1 Jan 8, 2025
0.9.0 Dec 26, 2024
0.8.0 Oct 20, 2024
0.7.0 Jun 16, 2024
0.2.2 Nov 7, 2022

#71 in Hardware support

Download history 50/week @ 2024-09-23 23/week @ 2024-09-30 160/week @ 2024-10-07 132/week @ 2024-10-14 59/week @ 2024-10-21 16/week @ 2024-10-28 40/week @ 2024-11-04 23/week @ 2024-11-11 17/week @ 2024-11-18 8/week @ 2024-11-25 5/week @ 2024-12-02 27/week @ 2024-12-09 10/week @ 2024-12-16 158/week @ 2024-12-23 19/week @ 2024-12-30 145/week @ 2025-01-06

335 downloads per month

MPL-2.0 license

100KB
1.5K SLoC

elgato-streamdeck

Rust library for interacting with Elgato Stream Deck and other stream controller hardware. Heavily based on python-elgato-streamdeck and partially on streamdeck library for rust.

This library was made as a better designed alternative to streamdeck library for Rust. I just took code from both of the libraries and made it more pleasant to use.

udev rules for Linux

If you're using systemd on your system, you might have to install udev rules to allow connecting to devices from userspace.

You can do that by using the following command to copy this repo's included 40-streamdeck.rules file into udev/rules.d/:

cp 40-streamdeck.rules /etc/udev/rules.d/

And then reloading udev rules:

sudo udevadm control --reload-rules

Unplugging and plugging back in the device should also help.

You should also create a group called "plugdev" if it doesn't exist and add yourself to it, so you get access to the devices. You also need to restart the user session to let user group changes to kick in.

Example

use elgato_streamdeck::{new_hidapi, StreamDeck};

// Create instance of HidApi
let hid = new_hidapi();

// List devices and unsafely take first one
let (kind, serial) = StreamDeck::list_devices(&hid).remove(0);

// Connect to the device
let mut device = StreamDeck::connect(&hid, kind, &serial)
    .expect("Failed to connect");

// Print out some info from the device
println!(
    "Connected to '{}' with version '{}'",
    device.serial_number().unwrap(),
    device.firmware_version().unwrap()
);

// Set device brightness
device.set_brightness(35).unwrap();

// Use image-rs to load an image
let image = image::open("no-place-like-localhost.jpg").unwrap();

// Write it to the device
device.set_button_image(7, image).unwrap();

// Flush
if device.updated {
    device.flush().unwrap();
}

Status

  • Convenient to use API for looking up devices, connecting to them and interacting with them
  • Reading buttons with async

Supported Devices

As it stands, this library should support the following devices:

Dependencies

~2–14MB
~112K SLoC