FastLED_NeoPixel icon indicating copy to clipboard operation
FastLED_NeoPixel copied to clipboard

How to define an array of strips

Open baronvertigovongrahamthesecondofsealand opened this issue 3 months ago • 1 comments

I have an array of NeoPixel strips:

Adafruit_NeoPixel led_strips[] = {
  Adafruit_NeoPixel(LED_COUNT, LED_A_DATA_PIN, NEO_GRB + NEO_KHZ800),
  Adafruit_NeoPixel(LED_COUNT, LED_B_DATA_PIN, NEO_GRB + NEO_KHZ800),
  Adafruit_NeoPixel(LED_COUNT, LED_C_DATA_PIN, NEO_GRB + NEO_KHZ800),
  Adafruit_NeoPixel(LED_COUNT, LED_D_DATA_PIN, NEO_GRB + NEO_KHZ800)
};

I cant see how to define this using your library. Could you explain, please?