Hello,
I am trying to access the LED 2 on the Nano Blinkstick, and there’s no documentation on how to do that. I can access the first one using:
public void changeColor(string color) { foreach (BlinkStick b in blinkStick) { if (blinkStick != null) { b.OpenDevice(); b.SetColor(color); b.CloseDevice(); } } }
How can I get LED2 to set the same color?