FastLED 3.1 Released! We're proud to announce the full release of FastLED version 3.1,

FastLED 3.1 Released!
We’re proud to announce the full release of FastLED version 3.1, an open source LED animation library for Arduino.

Download the ZIP file here https://github.com/FastLED/FastLED/archive/v3.1.0.zip or update directly using git.

In the eleven months since the last release, FastLED has become even more capable, even more compatible, and yes, even faster. Here are some highlights of what’s new in FastLED v3.1 over and above the 3.0 release:

  • Support for even more microcontroller chips and boards
  • High-performance parallel output on Arduino Due and Teensy 3.x
  • Literally the fastest-possible driver for the Neopixel WS2812 family of LEDs on standard ATmega-based Arduinos
  • New animation tools like periodic timers and color crossfades

A big thanks goes out to the vibrant and growing FastLED community, who’ve helped shape and refine this library, and who have built some absolutely amazing projects with it. You rock. Keep it up!

Here’s some more detail on what’s in the FastLED v3.1 release:

New Microcontroller Support Added

  • Arduino Zero
  • Teensy-LC
  • RFDuino
  • Sparkcore
  • Many new AVR-based platforms
  • Continued support for popular Arduino boards (Uno, Duo, Leonardo, Nano, Micro, etc.), the Adafruit Trinket, Gemma, and Flora, the Digistump DigiX, as well as PJRC Teensy 2, Teensy 3.0, and Teensy 3.1.

Continued LED Support
FastLED v3.1 continues support for more than a dozen popular addressable LEDs: NeoPixel, WS2811, WS2812, WS2812B, DotStar, APA102, APA104, GW6205/GW6205_400, P9813 Total Control Lighting LEDs, USC1903_400, Pixelmatix SmartMatrix, WS2801, LPD8806, LPD1886, TM1809, TM1804, TM1803, and SM16716!

New Library Features

  • Parallel output on multiple pins on Arduino Due, Teensy 3.0, and Teensy 3.1
  • Interrupt processing supported on Arduino Due, Teensy 3.0, Teensy 3.1, even when using Neopixel WS2812 family LEDs (WS2811, WS2812, WS2812B)
  • Improved SPI device sharing on the Teensy 3.0 and Teensy 3.1
  • Refresh rate auto-capping for LEDs that have a maximum update speed (e.g. Neopixel WS2812 family)
  • Support for Arduino 1.6.x IDE and gcc 4.8.1
  • Literally the fastest output physically possible for Neopixel WS2812 family LEDs.

New Library Functions

  • Recurring event triggers EVERY_N_MILLISECONDS, EVERY_N_SECONDS, EVERY_N_MINUTES, and EVERY_N_HOURS
  • Smooth crossfade between multiple color palettes
  • Define color palettes as a series of connected gradients
  • Recover approximate HSV color from RGB values with rgb2hsv_approximate
  • Ability to store one bit of user data in a CRGB, often invisibly
  • New named color “FairyLight” approximates incandescent holiday lights
  • Additional new functions for color gamma correction
  • Fast, compact routines for 8-bit average and modulo, and for 16-bit square root
  • random8 is now much more random

Backward Compatibility

  • Everything in FastLED v3.1 should be backward compatible with FastLED v3.0, with one exception:
  • We changed from the old symbol name “BLEND” to the new symbol name “LINEARBLEND” for ColorFromPalette, to avoid conflicts with another codebase. Simply replace “BLEND” with “LINEARBLEND” and your code should compile and run as before.

And Also

  • New example “DemoReel100”: six animations in 100 lines of code
  • Access to thousands of designer color palettes from cpt-city
  • “FastLED6502” for Apple ][, ][+, //e, and //gs (unsupported!)
  • Lots of code cleanup for improved maintainability, readability, and theoretical future sanity
  • New and improved documentation
  • And, as the apps say, “bug fixes and performance improvements.”

-Daniel Garcia & Mark Kriegsman, September 2015

What he said, folks!

When we released v3.0, the FastLED Google Plus community was just about about a thousand developers.

Today, with the release of the v3.1 library, we have over 2,100 developers here – a vibrant community indeed!

YOU’RE ALL GREAT! Thank YOU and keep up the great work helping each other so much!

Fabulous! Thank you for another amazing release.

You guys are awesome. Thank you very much to make this happen!

Congrats and thank you guys so much for all your hard work on this!

You guys are amazing! Thank you!

I look forward to checking it out!

Thanks for the truly creative and very friendly support you have provided for this group!! Well Done!!

Congrats! I was just looking at the upcoming features (parallel output in particular) last night and wondering when 3.1 would be out :slight_smile: Can’t wait to dig in (and maybe pull in some more functionality on the AllPixel).

such amazing work guys!

Thank you! And congrats :).

Cannot thank you guys enough— awesome

Just played with the DemoReel100 with my 40x30 matrix. Awesome. Uploading video to Youtube

https://youtu.be/JgaN9oLYkQw this is where it is

Nice! Where can I find details about any limitations for the TeensyLC?

@dougal : try the search box at the left of the G+ page to search this group’s history for TeensyLC discussions. (If you have more specific questions, start a new discussion thread so we can keep that separate.) Should be good to go!

Thanks Guys - you rock. I could not have created my projects without your efforts.

FastLED rules! Thanks for being awesome!

Is There any explanation on the new functions I see there are not on the wiki yet .
In particular of EVERY_N_MILLISECONDS. Thank you