FastLED 3.9.7
Loading...
Searching...
No Matches
led_layout_array.h
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
12LedColumns LedLayoutArray();
13
14#endif // LED_ARRAY_H_