[SOLVED]: Error When Compiling Code (Works with Arduino IDE and CodeBender)

The version of FastLED in the community libraries includes a C++ namespace. Just insert this before your declaration for CRGBPalette16.

using namespace NSFastLED; 

Also, BLEND no longer is defined. I’d guess LINEARBLEND is what you want. With those two changes it compiled for me.

1 Like