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

◆ loop()

void loop ( )

Definition at line 71 of file Blink.ino.

71 {
72 //Serial.println("BLINK");
73
74 // Turn the LED on, then pause
75 leds[0] = CRGB::Red;
76 FastLED.show();
77 delay(500);
78
79 // Now turn the LED off, then pause
80 leds[0] = CRGB::Black;
81 FastLED.show();
82 delay(500);
83}
CRGB leds[NUM_LEDS]
FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_GLOBAL_CONSTRUCTORS CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:74
@ Red
<div style='background:#FF0000;width:4em;height:4em;'></div>
Definition crgb.h:679
@ Black
<div style='background:#000000;width:4em;height:4em;'></div>
Definition crgb.h:567

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