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

Official Python library for blink(1) USB RGB LED notification device

Results 8 blink1-python issues
Sort by recently updated
recently updated
newest added

I can't install the latest version of the package because it requires hidapi, which requires gcc. This is not included in Home Assistant, a platform I am creating an integration...

I love Blink(1) it's a beautiful Human Interface in a world of cranky old RGB Keyboard drivers. So how could I connect EVERYTHING i.e. my hue lights, my Razer Keyboard,...

I have a couple of **old** blink1s I bought, possibly first batch out of beta. Using either the CLI or the python library, I get an issue where writing a...

I am wanting to make some changes to this library that will make it thread safe. While I know I am able to do this for my own use I...

Like the blink1-tool commands: * `--play` * `--stop` * `--setpattline` * `--getpattline` * `--savepattern` * `--readpattern` * `--playpattern`

This issue is easy to reproduce --- with a little change to the demo usage like this: ```python import time from blink1.blink1 import blink1 with blink1() as b1: b1.fade_to_color(100, 'navy')...

The udev rule installed by blink1-tool is a little, just a little different from the one in the documentation of the library. Also, both are quite different from the rules...

In the 0.3.1 release version, the `clear_pattern` call fails with `NameError: name 'write_pattern_line' is not defined` on this line: ``` rc = write_pattern_line(self.dev, 0, 'black', i ); ``` This is...