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);
}