Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-03Updating readme about avr-gcc 4.7 and linux.docworkDaniel Garcia
2015-01-30Update USART SPI definitions for Teensy2/Teensy++2Daniel Garcia
2015-01-30Fixed UART SPI on AVR chipsets.Daniel Garcia
2015-01-30TweakDaniel Garcia
2015-01-30Enable support for using both sets of hardware SPI pins on the teensy 3.1.Daniel Garcia
2015-01-30Fix software SPI on the teensy 3.1 for APA102.Daniel Garcia
2015-01-15Fix issue #120 - add timings for the UCS1904.Daniel Garcia
2015-01-15Attempt at a fix for #121 - base the cycle for a pin on the port that the ↵Daniel Garcia
pin is attached to, vs. the arbitrary pin numbers used by arduino.
2015-01-15Merge branch 'FastLED3.1' of https://github.com/FastLED/FastLED into FastLED3.1Daniel Garcia
2015-01-15Refined adjustment of millis() / MS_COUNTER clock on AVR to be closer to ↵Mark Kriegsman
correct for a wider range of pixel counts. It's now correct roughly within a handful of seconds per hour. The exact accuracy depends on the number of pixels, what else your code is doing and how long it takes doing it, and of course, the ambient temperature. You STILL can't make an alarm clock without adding an external RTC, but you can probably do a respectable syncronization of an animation to a 5-minute pop song. Total cost of this change is 1 byte of SRAM and about 40 bytes of program space. If you want to disable clock correction to save space, #define NO_CORRECTION 1 before including FastLED.h
2015-01-15Silence a warning in scale16by8 in AVR asm.Mark Kriegsman
2015-01-15Bugfix in scale16by8 for AVR assembly. Ow.Mark Kriegsman
2015-01-14Merge branch 'FastLED3.1' of https://github.com/FastLED/FastLED into FastLED3.1Daniel Garcia
2015-01-14Fix #107 - make sure our APA102 end buffer is complete.Daniel Garcia
2015-01-11Pass timebase through beat16, fixes bug #117Mark Kriegsman
2015-01-08Adding DemoReel100 exampleMark Kriegsman
2015-01-05Merge branch 'FastLED3.1' of https://github.com/FastLED/FastLED into FastLED3.1Daniel Garcia
2015-01-05Add WS2812 entries to the other half of chipsets.hDaniel Garcia
2015-01-04typo fixMark Kriegsman
2015-01-03Adding rgb2hsv_approximate. It's (1) just an approximation, (2) not nearly ↵Mark Kriegsman
as fast as the normal HSV-to-RGB conversion, and (3) it's most accurate when it's converting back to HSV from RGB colors that came from fully-saturated HSV colors to start with, e.g., CHSV( hue, 255,255)-> CRGB-> CHSV will give best results.
2015-01-03Adding mod8 and addmod8, fast modulo specifically designed for the case ↵Mark Kriegsman
where 'i' is already less than 'j'. The addmod8 is designed for easy 'mode' or 'state' switching.
2015-01-03Add a short circuit to nblendDaniel Garcia
2015-01-03Separate out WS2811 and WS2812 timing. Define APA104 according to WS2811 ↵Daniel Garcia
timings, not WS2812 timings.
2014-12-25bumping changes fileDaniel Garcia
2014-12-25Adding alias for adafruit DotStar leds (aka APA102)Daniel Garcia
2014-12-22Tweaking timings for the parallel output driverDaniel Garcia
2014-12-22Fixing up k20 related interrupt codeDaniel Garcia
2014-12-14Merge branch 'FastLED3.1' of https://github.com/FastLED/FastLED into FastLED3.1Daniel Garcia
2014-12-14#105Daniel Garcia
2014-12-13Added nblendPaletteTowardPalette as a toplevel function for palette ↵Mark Kriegsman
crossfade support... I suspect there will be some small changes coming to this, but here it is.
2014-12-11Added support for ColorFromPalette directly from a progmem RGB palette16Mark Kriegsman
2014-12-09Added EVERY_N_MILLISECONDS as a synonym for EVERY_N_MILLISMark Kriegsman
2014-12-09Added EVERY_N_SECONDS and several variations. Some of it is preprocessor ↵Mark Kriegsman
macros instead of templates because of C++03 template rules (which have subsequently been relaxed in C++11).
2014-12-09Added CRGB::getParity, CRGB::setParity, and fairy light color ↵Mark Kriegsman
apporximations: CRGB::FairyLight and CRGB::FairyLightNCC (for use with No Color Correction).
2014-12-09Added beat88 and beatsin88Mark Kriegsman
2014-12-02Stop gcc 4.8.3 from messing with my asm.Daniel Garcia
2014-12-02Adding more docsDaniel Garcia
2014-12-01Adding beginnings of doxygen documentation.Daniel Garcia
2014-11-30.gitignore html/ folder (contains gh-pages branch)Daniel Garcia
2014-11-30Merge branch 'FastLED3.1' of https://github.com/FastLED/FastLED into FastLED3.1Daniel Garcia
2014-11-29Gate FASTLED_ACCURATE_CLOCK on whether or not interrupts are allowed.Daniel Garcia
2014-11-27Made rainbow slightly brighter. No 'Rainbow Bright' jokes, please.Mark Kriegsman
2014-11-27Removed 'weak' attribte from forward reference to XY, as it allows (oops) ↵Mark Kriegsman
compilation to succeed without an XY function linked in, even when one is needed. I'll switch it back when we start providing a default XY function.
2014-11-25Fix for lerp8by8 and lerp16by16 when rangestart and rangeend are inverted.Mark Kriegsman
2014-11-25Fix off-by-one error in array blend functions.Mark Kriegsman
2014-11-25Add ((weak)) attribute to forward declaration of user-supplied XY functionMark Kriegsman
2014-11-24Prefix config defines with FASTLED_ to make sure we don't conflict with ↵Daniel Garcia
anything else.
2014-11-24Add configuration option for allowing/disallowing interrupts. Disable by ↵Daniel Garcia
default for AVR, block out AVR implementation of wiring functions.
2014-11-24Shut off version warning in color palettesDaniel Garcia
2014-11-22We only need to see the FastLED version warning once, thank you very muchDaniel Garcia