#include <FastLED.h>
#define NUM_LEDS 60
#define PIN_STRIP_1 5
#define PIN_STRIP_2 18
#define PIN_STRIP_3 19
CRGB strip1[NUM_LEDS];
CRGB strip2[NUM_LEDS];
CRGB strip3[NUM_LEDS];
void setup() {
FastLED.addLeds<WS2812, PIN_STRIP_1, GRB>(strip1, NUM_LEDS);
FastLED.addLeds<WS2812, PIN_STRIP_2, GRB>(strip2, NUM_LEDS);
FastLED.addLeds<WS2812, PIN_STRIP_3, GRB>(strip3, NUM_LEDS);
FastLED.setBrightness(50);
// Test per strip, afzonderlijk
fill_solid(strip1, NUM_LEDS, CRGB::Green);
FastLED.show();
delay(1500);
fill_solid(strip2, NUM_LEDS, CRGB::Blue);
FastLED.show();
delay(1500);
fill_solid(strip3, NUM_LEDS, CRGB::Red);
FastLED.show();
}
void loop() {
delay(100);
}