We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This example shows how to find BlinkStick by serial number.
from blinkstick import blinkstick bstick = blinkstick.find_by_serial("BS000001-1.0") if bstick is None: print "Not found..." else: print "BlinkStick found. Current color: " + bstick.get_color(color_format="hex")