simple one, but i can't seem to make fill_solid work.

simple one, but i can’t seem to make fill_solid work. i don’t get errors, i just don’t get results

easy example!

2803 leds and teensy3 if its relevant.

void loop () {
fillsolid(255,255,255);
}

void fillsolid (int cred, int cblu, int cgrn) {
fill_solid(leds, NUM_LEDS, CRGB(cred, cblu, cgrn) );
}

Try adding a FastLED.show(); in the loop function. That help?

You forgot to actually .show() the results. All you’re doing is filling the array …

yep! that worked! :-/