We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This example shows how to access all available information within BlinkStick.
from blinkstick import blinkstick for bstick in blinkstick.find_all(): print "Found device:" print " Manufacturer: " + bstick.get_manufacturer() print " Description: " + bstick.get_description() print " Serial: " + bstick.get_serial() print " Current Color: " + bstick.get_color(color_format="hex") print " Info Block 1: " + bstick.get_info_block1() print " Info Block 2: " + bstick.get_info_block2()