You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Going through the API documentation and I am unable to determine the command that regulates light intensity of a single LED unit. Is there a way to access that feature or is it inaccessible currently with the capabilities of the Python API for the blinkstick?
The text was updated successfully, but these errors were encountered:
Hi!
I got a similar effect like this: (if this is what you are looking for)
while True:
for i in range(0,255,5):
bstick.set_color(red=i, green=0, blue=0)
time.sleep(0.05)
for i in range(255,0,-5):
bstick.set_color(red=i, green=0, blue=0)
time.sleep(0.05)
Going through the API documentation and I am unable to determine the command that regulates light intensity of a single LED unit. Is there a way to access that feature or is it inaccessible currently with the capabilities of the Python API for the blinkstick?
The text was updated successfully, but these errors were encountered: