FastLED 3.9.15
Loading...
Searching...
No Matches

◆ attackDecayWave8()

uint8_t attackDecayWave8 ( uint8_t i)
Examples
TwinkleFox.ino.

Definition at line 259 of file TwinkleFox.ino.

260{
261 if( i < 86) {
262 return i * 3;
263 } else {
264 i -= 86;
265 return 255 - (i + (i/2));
266 }
267}

Referenced by computeOneTwinkle().

+ Here is the caller graph for this function: