Wrong colors?!?!

I bought the “BlinkStick Pro LED Adapter Bundle” and I received it yesterday.

Everything seems good except the colors.
I tried your test application and the color choosen is not what my led strip shown.
I also tried in a C# application, same behavior…

My best bet is that the colors are inverted.

So, in my C# code I will have to do a bitwise operator like this to make it work as expected :

byte red = (byte)~red;
byte green = (byte)~green;
byte blue = (byte)~blue;

I will have to try this this evening.

Did I miss something?
Is it a bug with the hardware (the wiring)?

Thanks in advance

It seems your device is in inverse mode. You can change it in the device settings in the BlinkStick Client Application.

1 Like