I have a Blinkstick Strip and am unable to use the same python code that was used for the blinkstick pro to manipulate the light settings. Does anyone know what I can do first to get the device working? Here is my code:
#Import blinkstick module
from blinkstick import blinkstick
#Find the first BlinkStick
bstick = blinkstick.find_first()
print(bstick.get_serial())
#Set the color red on the 12th LED of R channel
#bstick.set_color(channel=0, index=3, name='red')
print(bstick.get_mode())
bstick.set_mode(2)
print(bstick.get_mode())
bstick.set_color(channel = 0, index = 0, name = "red")
This is the output: