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) );
}