Anyone got any guides on using FastLED with the Particle Photon?

Anyone got any guides on using FastLED with the Particle Photon? I just got one and I see there is a library in the IDE, but my sketches wont compile with lots of scope errors.

The photon’s library manager requirements mean you need to add the line:

FASTLED_USING_NAMESPACE;

Right after you include FastLED.h – if you look in the examples they all have that.

I guess I missed that, I’ll give it a go. Thanks!

That was it. With the exception of setMaxPowerInVoltsAndMilliamps, everything compiles, and I can work around that I think. Thanks for the help.