-
• #2
I've never seen RGB WS2812B's - I've always seen GRB.
-
• #3
-
• #4
Annoyingly there seem to be many different colour orders - I think the APA104 ones might be different again?
I'm afraid it's just something you have to put up with - not much you can do from Espruino's side.
-
• #5
The ws2811 ones can be any color order, since it's up to the guy making the boards which color leds he puts on which pins
-
• #6
Just to add that if you're controlling them with the Graphics lib, you can specify a colour order: http://www.espruino.com/Reference#l_Graphics_createArrayBuffer
I've recently started playing with a WS2812B ring and I expected the color format to be RGB, however when I send a [255,0,0] the first LED lights up green instead of red. This baffled me so I tried [0,255,0] and the first LED turned red and [0,0,255] blue. Are some variants of the WS2812b's GRB instead of RGB or am I doing something wrong? This also happens when using the graphics library the color scheme is GRB.