FastLED 3.9.15
Loading...
Searching...
No Matches
led_layout_array.h
Go to the documentation of this file.
1
2#ifndef LED_ARRAY_H_
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
13
14#endif // LED_ARRAY_H_
LedColumns LedLayoutArray()
LedColumns(const LedColumns &other)
const int * array
LedColumns(const int *a, int l)