FastLED 3.3 and Grove - WS2813 60 RGB LED Strip Waterproof

How can I add another WS2813 60 RGB LED strip in DATA_PIN 3 to the code below?



code:

#include <FastLED.h>



#define NUM_LEDS 60

#define DATA_PIN 2

CRGB leds[NUM_LEDS];



void setup() {

FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);

}



void loop() {

FastLED.setBrightness(100); // Set brightness to half of the max. (max. 255)

for(int i = 0; i <= NUM_LEDS-1; i=i+1) {

leds[i] = CRGB::White; // Set single LED to white

FastLED.show();

}

}

Hi There

maybe you should visit https://www.reddit.com/r/FastLED to find the answer :smiley: