Access a single element in this set, just like an array operator.
Definition at line 150 of file pixelset.h.
150{
if(
dir & 0x80) {
return leds[-
x]; }
else {
return leds[
x]; } }
PIXEL_TYPE *const leds
pointer to the LED data
const int8_t dir
direction of the LED data, either 1 or -1. Determines how the pointer is incremented.
Represents a view/window into a set of LED pixels, providing array-like access and rich color operati...