Hey guys,
I just want to know if there is a possibilty to pulse every led of the BlinkStick Flex simultaneously.
I’m already in Mode 3 but unfortunately there are only 8 LED on.
My Code in C#:
var allDevice = BlinkStick.FindAll();
Parallel.ForEach(allDevice, (device) =>
{
device.TurnOff();
if (device != null)
{
if (device.OpenDevice())
{
device.SetMode(3);
device.Pulse("red");
device.Pulse("green");
device.Pulse("blue");
}
else
{
Console.WriteLine("Could not open the device");
}
}
else
{
Console.WriteLine("BlinkStick not found");
}
});