MCPcopy Create free account
hub / github.com/FastLED/FastLED / LedColumns

Class LedColumns

examples/LuminescentGrand/shared/led_layout_array.h:5–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#define LED_ARRAY_H_
4
5struct LedColumns {
6 LedColumns(const int* a, int l) : array(a), length(l) {}
7 LedColumns(const LedColumns& other) : array(other.array), length(other.length) {}
8 const int* array;
9 int length;
10};
11
12LedColumns LedLayoutArray();
13

Callers 2

LedCurtinArrayFunction · 0.85
LedLuminescentArrayFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected