blinkstick-python
blinkstick-python copied to clipboard
BlinkStick Python interface to control devices connected to the computer
This function is working for me on OSX but not on Windows. count = stick.get_led_count() File "C:\Python27\lib\site-packages\blinkstick\blinkstick.py", line 539, in get_led_count device_bytes = self._usb_ctrl_transfer(0x80 | 0x20, 0x1, 0x81, 0, 2)...
Hello, I am attempting to get a blickstick nano functioning on my raspberry bi 3 model b running a system image generated by buildroot (this is for an embedded project...
If you use `entry_points` in `setup.py` instead of `scripts` then you should get a `.exe` on Windows so it's actually directly runnable. For example: https://github.com/altendky/misc/blob/b78763713675f4c2903aeaf3bb5d5872b3d3d762/experiments/basicpyqt5example/setup.py#L17-L21
I have a Java program running on several raspberry Pis (models 2 and 3) with blinksticks (Nanos, Squares and Strips). The java program spawns a process with a blinkstick command...
Exposes two new features in the firmware: 1) Can send data to up to 128 LED (384 bytes) using report 10 2) Can use the 12 bit color mode to...
Since pyusb commit dac78933, the 'length' argument is gone. So we need to remove it also from the calls. That fixes serial number, description and manufacturer all being reported as...
I found it useful to be able to output the hex for random colors. This let me log the colors and be able to create a list of "favorites" that...
I noticed when running `udevadm` that the rule installed by `blinkstick` was syntactically invalid: invalid key/value pair in file /etc/udev/rules.d/85-blinkstick.rules on line 1,starting at character 80 ('') Add a newline...
When I'm trying to execute the following code, I got from the documentation: ``` matrix = blinkstick.BlinkStickProMatrix(4,4) matrix.set_color(x=1, y=1, r=255, g=0, b=0) matrix.send_data_all() ``` I only get this:Exception: 'NoneType' object...