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

◆ loop()

void loop ( )

Definition at line 39 of file Apa102HDOverride.ino.

39 {
40 // Draw a a linear ramp of brightnesses to showcase the difference between
41 // the HD and non-HD mode.
42 for (int i = 0; i < NUM_LEDS; i++) {
43 uint8_t brightness = map(i, 0, NUM_LEDS - 1, 0, 255);
45 brightness); // Just make a shade of white.
46 leds_hd[i] = c; // The APA102HD leds do their own gamma correction.
47 }
48 FastLED.show(); // All leds are now written out.
49 delay(8); // Wait 8 milliseconds until the next frame.
50}
#define NUM_LEDS
Definition Apa102.ino:6
CRGB leds_hd[NUM_LEDS]
Definition Apa102HD.ino:44
CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:58
UISlider brightness("Brightness", 255, 0, 255, 1)
long map(long x, long in_min, long in_max, long out_min, long out_max)
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:54

References brightness, FastLED, leds_hd, and NUM_LEDS.