Hi there,
I’m trying to get my UCS1903B LED strips to run in parallel using UCS1903_PORTD. My strips use BRG order instead of RGB, which throws off my colours.
I’ve worked around this issue by changing FastLED.h line 421 to have BRG hard-coded:
case UCS1903_PORTD: return addLeds(new InlineBlockClocklessController<NUM_LANES, PORTD_FIRST_PIN, NS(500), NS(1500), NS(500), BRG>(), data, nLedsOrOffset, nLedsIfOffset);
Is there a way I can achieve this without patching the FastLED source? Thanks!