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}
CRGB leds[NUM_LEDS]
Definition Apa102.ino:11
CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:58
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:54

References FastLED, and leds.