Right now I am typing set color black individually for each LED but is there any way for me to type set color of all LEDs to black?
Sorry new to this.
Thanks
from blinkstick import blinkstick
import time
b = blinkstick.find_first()
while True:
b.set_color(index=2, name='pink')
b.set_color(index=3, name='lightyellow')
time.sleep(10)
b.set_color(index=2, name='black')
b.set_color(index=3, name='black')