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

◆ blink()

void blink ( CRGB color,
int times )
Examples
BlinkParallel.ino.

Definition at line 54 of file BlinkParallel.ino.

54 {
55 for (int i = 0; i < times; i++) {
56 fill(color);
57 FastLED.show();
58 delay(500);
60 FastLED.show();
61 delay(500);
62 }
63}
FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_GLOBAL_CONSTRUCTORS CFastLED FastLED
Global LED strip management instance.
void delay(u32 ms, bool run_async=true) FL_NOEXCEPT
Public delay wrapper that keeps bare Arduino delay() preferred after using fl::delay; while still all...
Definition delay.h:98
@ Black
<div style='background:#000000;width:4em;height:4em;'></div>
Definition crgb.h:510

References fl::CRGB::Black, FastLED, and fill().

Referenced by loop().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: