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

◆ attackDecayWave8()

uint8_t attackDecayWave8 ( uint8_t i)
Examples
TwinkleFox.ino.

Definition at line 267 of file TwinkleFox.ino.

268{
269 if( i < 86) {
270 return i * 3;
271 } else {
272 i -= 86;
273 return 255 - (i + (i/2));
274 }
275}

Referenced by computeOneTwinkle().

+ Here is the caller graph for this function: