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

◆ loop()

void loop ( )

Definition at line 64 of file Blink.ino.

64 {
65 // Turn the LED on, then pause
66 leds[0] = CRGB::Red;
67 FastLED.show();
68 delay(500);
69 // Now turn the LED off, then pause
70 leds[0] = CRGB::Black;
71 FastLED.show();
72 delay(500);
73}
CRGB leds[NUM_LEDS]
Definition Apa102.ino:11
CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:58
@ Red
<div style='background:#FF0000;width:4em;height:4em;'></div>
Definition crgb.h:611
@ Black
<div style='background:#000000;width:4em;height:4em;'></div>
Definition crgb.h:499

References CRGB::Black, FastLED, leds, and CRGB::Red.