blinkstick-python icon indicating copy to clipboard operation
blinkstick-python copied to clipboard

BlinkStick Python interface to control devices connected to the computer

Results 57 blinkstick-python issues
Sort by recently updated
recently updated
newest added

On Windows 10 I had problems with an ord() command. It appears that the problem command was line 234 in blinkstick.py: `data = (c_ubyte * len(data_or_wLength))(*[c_ubyte(ord(c)) for c in data_or_wLength])`...

- This library supports an integration in Home Assistant. - The upcoming pip resolver will be more strict in resolving package version conflicts: http://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html#what-will-change - To avoid future issues it...

When trying to Morph on an index other than 0, I get this error: hidP error: not value array Example: bstick.morph(channel=0,index=1,name="green",duration=1000,steps=50) Full error below: Traceback (most recent call last): File...

Although the changelog states that Python 3 is supported since 1.1.5, the following error occurs while running the following code in Python 3.4.3 ``` python from blinkstick import blinkstick b...

Communication is very slow. It takes nearly half a second to simply control 1 LED of my Blinkstick Strip (8 LEDs) connected to a Raspberry. Is there something I can...

It appears the the underlying sending data over usb is pretty prone to failure. It would be nice to support some ability to retry, perhaps by having a retry object...

The below code sets all the LEDs on the Blinkstick Strip to blue but does not turn them off. ```python from blinkstick import blinkstick bstick = blinkstick.find_first() for i in...

I can successfully switch my Blinkstick Nano between modes 2 (controls top LED) and 3 (controls both top and bottom LED), and can do so at will: ``` blinkstick --set-mode...

Once USB connection is lost, the init get no device and then the bs_serial variable is not set

Due to the fact that a device is no more accessible, the init of blinkstick class has no device and then the slf.bs_serial does not exist Traceback (most recent call...