python-elgato-streamdeck icon indicating copy to clipboard operation
python-elgato-streamdeck copied to clipboard

Python library to control the Elgato Stream Deck.

Results 37 python-elgato-streamdeck issues
Sort by recently updated
recently updated
newest added

Was trying to figure out why I couldn't draw text with Pillow at (0, 0), discovered this. Seems shifted right by about 16 pixels. Unfortunately I need this real-estate. I...

bug
more-info-needed

Playing around with this, I wanted to treat keys as individual objects rather than needing to put the code for all the different keys into one function based on style/callback...

enhancement

Apologies - my first ever attempt at contributing to code using a GIT pull request. Not sure which project file these would best be suited to, but I thought it...

IT was quite a lot of work finding out how to properly convert images to the correct image format. I suggest adding this example that supports using button images from...

2nd try to file a Pull Request Removing Chattering: New callbacks are only made after a 3ms back delay/cooldown for that key.

Add a new Productkey for the Stream Deck XL

There appears to be a new revision of the XL with a new usb product id (source: https://github.com/bitfocus/companion/issues/2113) I haven't begun on checking for protocol changes, I shall report back...

bug

The Stream Deck + has 8 keys (KEY_COUNT == 8 ) but it returns 10 ControlType.KEY states when reading the control states. E.g. this test code: ``` from StreamDeck.DeviceManager import...

bug

This works fine in Linux: ``` from StreamDeck.DeviceManager import DeviceManager streamdeck = DeviceManager().enumerate()[0] streamdeck.open() while not any(streamdeck.key_states()): pass print("Key pressed") streamdeck.close() ``` It never quits in Windows: key_states() never registers...

bug

**I'm cross-posting this from the home_assistant_streamdeck_yaml git, which is the python script I'm running when this happens - but it looks like the issue might be related to the LibUSBHIDAPI...

bug