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

◆ loop()

void loop ( )

Definition at line 89 of file RGBCalibrate.ino.

89 {
90 leds[0] = CRGB(255,0,0);
91 leds[1] = CRGB(0,255,0);
92 leds[2] = CRGB(0,255,0);
93 leds[3] = CRGB(0,0,255);
94 leds[4] = CRGB(0,0,255);
95 leds[5] = CRGB(0,0,255);
96 leds[6] = CRGB(0,0,0);
97 FastLED.show();
98 delay(1000);
99}
fl::CRGB leds[NUM_LEDS]
FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_GLOBAL_CONSTRUCTORS CFastLED FastLED
Global LED strip management instance.
fl::CRGB CRGB
Definition crgb.h:25
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

References FastLED, and leds.