Hi!
I have a BlinkStick Square and try to programatically alternate between colors. My program in pseudocode is the following:
Open device
Open stream
for(;;) {
SetFeature(0x06 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff)
Wait(250 ms)
SetFeature(0x06 0x00 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00 0x00 0xff 0x00)
Wait(250 ms)
}
Sooner or later only the LED 0 will continue to alternate, though. All other LEDs remain at their previous state. The command has not changed and should address all LEDs, not only the LED 0.
You can find a video of the issue here: https://anonfile.com/0127S1gbb5/software_error_mp4
Does anyone have an idea what went wrong here?
Best
Jan