Definition at line 108 of file noisepalette.cpp.
108 {
109 static uint8_t ihue = 0;
110
111 for (uint16_t i = 0; i <
width; i++) {
112 for (uint16_t j = 0; j <
height; j++) {
113
114
115
116
119
120
122 index += ihue;
123 }
124
125
126
127 if (bri > 127) {
128 bri = 255;
129 } else {
131 }
132
135 }
136 }
137
138 ihue += 1;
139}
CRGBPalette16 currentPalette
uint16_t XY(uint8_t x, uint8_t y) const
fl::scoped_array< uint8_t > noise
LIB8STATIC uint8_t dim8_raw(uint8_t x)
Adjust a scaling value for dimming.
CRGB ColorFromPalette(const CRGBPalette16 &pal, uint8_t index, uint8_t brightness, TBlendType blendType)
References fl::ColorFromPalette(), colorLoop, currentPalette, dim8_raw(), height, leds, noise, width, and XY().