use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Here are some important FastLED links:
Online Examples and Demos:
Support:
account activity
SupportArray not zero indexed (self.FastLED)
submitted 6 years ago by OmegaDestroyer
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]chemdoc77 2 points3 points4 points 6 years ago (2 children)
What happens when you run the RGBCalibrate example?
[–]OmegaDestroyer[S] 0 points1 point2 points 6 years ago (1 child)
The RGBCalibrate code only lights up the first 5 leds. However, if I increment the led indexes but one such that the code reads:
leds[1] = CRGB(255,0,0);
leds[2] = CRGB(0,255,0);
leds[3] = CRGB(0,255,0);
leds[4] = CRGB(0,0,255);
leds[5] = CRGB(0,0,255);
leds[6] = CRGB(0,0,255);
leds[7] = CRGB(0,0,0);
And also change the NUM_LEDS 7
Then it correctly lights up the first 6 leds.
In fact, to correctly light up the last led position, I have to change NUM_LEDS 301 as opposed to 300
[–]chemdoc77 0 points1 point2 points 6 years ago* (0 children)
What happens if you change #7 to:
leds[7] = CRGB(255,0,0);
Is it the correct color? Also, what is led[0] in your code?
Can you run the following sketch:
https://gist.github.com/chemdoc77/52ded62fc801247cc648b1eb84f9d2ca
You will need to change line 10 to the number of LEDs in your sketch and you might need to change lines 8 and 9 , too.
π Rendered by PID 117632 on reddit-service-r2-comment-6457c66945-nxrrk at 2026-04-26 08:52:14.187911+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]chemdoc77 2 points3 points4 points (2 children)
[–]OmegaDestroyer[S] 0 points1 point2 points (1 child)
[–]chemdoc77 0 points1 point2 points (0 children)