this post was submitted on 20 Jul 2023
2 points (100.0% liked)

Federated Streaming

107 readers
5 users here now

All Things OpenSource and Federated Streaming

founded 1 year ago
MODERATORS
 

Anyone got it running? No success so far.

Found that these two which seem to work with older models.

Both run but do not detect my Streamdeck.

I mean it's there (i tried multiple USB ports):

$> lsusb
$> Bus 001 Device 010: ID 0fd9:0084 Elgato Systems GmbH Stream Deck Plus

Edit: Found another Thing. Uses a different approach - "hidraw". Strangely - the Web-App detects the Streamdeck + correctly. (But Fails upon access Problems )

No device access granted: NotAllowedError: Failed to open the device.

Out of ideas. Any hints are appreciated.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 1 points 1 year ago (1 children)

Did you set the permissions for the usb-device so that your user is allowed to access it? It depends on your distribution how to do that.

[โ€“] [email protected] 1 points 1 year ago* (last edited 1 year ago)

I think so. But' ill have another look. Thanks!

I tried every possible combination of udev-rules



# Stream Deck +
#SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0084", MODE:="666", GROUP="plugdev", TAG+="uaccess"

# HiDraw
#KERNEL=="hidraw*", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0084", MODE:="666", GROUP="plugdev", TAG+="uaccess"

SUBSYSTEM=="usb", MODE="0660" ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0084", GROUP="plugdev", SYMLINK+="streamdeck-plus"

SUBSYSTEM=="usb", OWNER="plugdev"