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

◆ loop()

void loop ( )

Definition at line 41 of file FxDemoReel100.ino.

42{
43 // Run the DemoReel100 draw function
44 demoReel->draw(Fx::DrawContext(millis(), leds));
45
46 // send the 'leds' array out to the actual LED strip
47 FastLED.show();
48 // insert a delay to keep the framerate modest
49 FastLED.delay(1000/FRAMES_PER_SECOND);
50}
CRGB leds[NUM_LEDS]
Definition Apa102.ino:11
#define FRAMES_PER_SECOND
CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:58
DemoReel100Ptr demoReel
_DrawContext DrawContext
Definition fx.h:21

References demoReel, FastLED, FRAMES_PER_SECOND, and leds.