I have tried various ways of going from minimum brightness to full brightness I have also searched on the net and found snippets, but not a full working example.
As I am trying to keep this simple I include my fade down code. Which works.
Small tip to save typing… instead of:
leds[2].red = 250; leds[2].green = 100; leds[2].blue = 10;
you could set that same color like:
leds[2] = CRGB(250,100,10);
And if using HSV, it might be close to:
leds[2] = CHSV(15,245,130);
Also, when sharing programs, please use http://gist.github.com as it will make sure the code can be displayed correctly on all devices, and line numbers can be referenced for discussion.
Thanks guys for all your help, I will look at all the examples.
After another 5 hours I did get it to work, but I’m sure it can be done better. But in that time I did understand more how FastLED works, so it was a valuable lesson !
And I have noted that the code should be on Github. but this is the first time on FastLED groups.