Hey. I've run into a problem,

Hey.

I’ve run into a problem, where I have two different types of LED’s that doesn’t have the same color order (RGB and GRB). I use some APA106-F5’s (RGB) and a standard WS2812B (GRB) strip.
Is it possible to change the order of just one kind of LED’s, but still define them as one strip?

Code: https://gist.github.com/mathiashaugaard/e827771ff34c826e1676

Check this example: https://github.com/FastLED/FastLED/blob/master/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino, maybe it will help you/

No, color order is defined at the strip/pin level. You’d need to split it into two strips, each in their own pin.

Another option would be to manually swap r and g before calling show and then swap them back afterwards.

I’ve got it to work, thanks to both of you :slight_smile: