Hello, I'm stuck with basis.

Hello, I’m stuck with basis. When trying to compile the parallelOutput example for my UNO I get a warning message saying “exit status 1
‘WS2811_PORTD’ was not declared in this scope”. I guess it have something to do with registrers and I set all DIR D as output except b0 because of the RX serie: DDRD = B11111110;// Unfortunately WS2811_PORTD header seems an option for the compiler. What am doing wrong? What is the exact instruction to have the outputs enabled?Currently my setup function is
void setup() {
DDRD = DDRD | B11111100;
LEDS.addLeds<WS2811_PORTD,NUM_STRIPS>(leds, NUM_LEDS_PER_STRIP);
LEDS.setBrightness(32);
}

I don’t think parallel output is supported on the Uno: https://github.com/FastLED/FastLED/wiki/Parallel-Output

Parallel output is not available on the Uno, as far as I know, it’s only available on the Teensy 3.x, ESP8266, Digix/Due and is available but may be unstable on the ESP32.

Mmm yeh indeed, many thx!