Is it possible to use these Pixie LEDs with FastLED? What type of LED do I put in the FastLED.addLeds<> call?
they seem to use a different protocol : Originally, they have designed the Pixie to support the same serial protocol as the WS28x family. However, this compatibility, which was originally considered a feature has been eventually deemed a drawback.
Yes, the Pixies use a different protocol. A very simple serial one at 115200 bps though. I think anyone with a decent familiarity with FastLED architecture could create a Pixie CLEDController (maybe cribbing from the DMX controller already in FastLED)
If you just want the color control that FastLED offers, then you can use it to manipulate RGB values before sending them serially, but it doesn’t use a standard (for FastLED) protocol to communicate.
So… what everyone is saying.
@Jarrod_Wagner oh yeah that’s a great idea. Instead of doing “FastLED.show()” grab the “Adafruit_Pixie::show()” function and slightly adapt it.
It’s a shame they’re not using SPI - since they’re using serial I’ll need to do up new controllers for all the platforms to use the UARTs - the irony is they could’ve gotten much higher data rates if they used SPI - I may just say screw it and use the arduino serial libraries under the hood to push out the data. I don’t have any of these yet to play/test with though.
@Tod_Kurt and if you’re clever about the way you set things up (and the structure of pixies data) you may even be able to use the memory functions of FastLED to do things pretty efficiently.
It is a shame that they did it that way although understandable on the whole. Maybe we should push for a Pixie V1.1 
Would it be easier to modify the firmware of the pixel instead of modifying fastled?
@Daniel_Garcia I have a couple extra. What if I sent one over or dropped it by? 
That would certainly speed up getting it working
Drop me an email! (danielgarcia at the gmails)
I have 8 of these - was there any progress on this? @Erin_St_Blaine or @Daniel_Garcia
Yeah @Daniel_Garcia got it working.
Thanks - in ordinary FastLED? What’s the CHIPSET declaration? These are B R I G H T !!! I made the mistake of looking at it face on when running the Adafruit demo. I couldn’t see for a few minutes!
I also wish I could solder better…
PIXIE and you have to include SoftwareSerial.h before you include FastLED.h
@Mark_Ortiz I Felt that way too. These things are hard to solder!