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

◆ attackDecayWave8()

uint8_t attackDecayWave8 ( uint8_t i)
Examples
TwinkleFox.ino.

Definition at line 269 of file TwinkleFox.ino.

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

Referenced by computeOneTwinkle().

+ Here is the caller graph for this function: