Hi! Is USC2903 supported? the documentation says it is,

Hi!

Is USC2903 supported? the documentation says it is, but I am trying it with the most basic example and the IDE is not compiling the data…

#include <FastLED.h>
#define NUM_LEDS 1
#define DATA_PIN 49

CRGB leds[NUM_LEDS];

void setup() {
FastLED.addLeds<UCS2903, DATA_PIN>(leds, NUM_LEDS);
}

void loop() {
leds[0] = CRGB::Red;
FastLED.show();
delay(30);
}

in chipset.h I do not see it. Is it replaceable for another? 1903/1903b/1904?

You need to pull the latest directly out of github on master@head - I haven’t spun up a full release yet that arduino or others would pick up that has it.

thanks daniel