All
I have a Teensy 3.1 with a OctoWS2811 board question
I have 3 strings of BRG LEDs and 1 string of RGB LEDs
Is there a way to define the outputs so they both will work?
Not easily with parallel output, as the ordering is global for that controller - you can do it with separate controllers, though (multiple addLeds calls), though then you lose the benefit of the parallel output. Another way would be to write some code that swaps the bytes around in the odd strip before calling FastLED.show - and then swaps them back afterwards.
Thanks Daniel