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

BlinkStick Strip: pulse() set first LED to black

Open dublok opened this issue 8 years ago • 1 comments

For "BlinkStick Strip": calling pulse() with index > 0 set first LED to dark.

def first_led_black_error():
    stick = blinkstick.find_first()
    # all white
    for i in range(8):
        stick.set_color(0, index=i, name='white')
    # pulses 4th LED but first LED gets black
    stick.pulse(0, index=4, name='red', repeats=3)

dublok avatar Oct 19 '17 13:10 dublok

Does your code ever result in the first led lighting up?

Findarato avatar Apr 15 '21 00:04 Findarato