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
2016-02-17Merge branch 'scale8fix' of https://github.com/FastLED/FastLED into scale8fixscale8fixDaniel Garcia
2016-02-17Cut back on number of functions included by showRGBInternal to minimize ↵Daniel Garcia
weird gcc compiler/spill errors
2016-02-17Change a bunch of 171s to 170s to prevent overflow with the 'fixed' scale8. ↵Mark Kriegsman
Don't ask my why these are preprocessor constants. (No reason.)
2016-02-17Tweak getAverageLight to do the right thing in a fixed scale8 worldDaniel Garcia
2016-02-17hsv2rgb_rainbow: remove unneeded (and overflowing) +1 to color channels in ↵Mark Kriegsman
the inlined, deconstructed version of nscale8_video.
2016-02-17In ColorFromPalette(s), skip redundant (and overflowing) increment of values ↵Mark Kriegsman
after scale8 if scale8 is 'fixed'
2016-02-17Tweak dithering value setup in a world where scale8 is fixedDaniel Garcia
2016-02-17Add defines to be able to turn off ditheringDaniel Garcia
2016-02-17Cleaning up some comments and ifdef guardsDaniel Garcia
2016-02-17AVR ASM versions of scale8 fixDaniel Garcia
2016-02-17Fix C implementations of scale8Daniel Garcia
2016-02-17Add FASTLED_SCALE8_FIXED config optionDaniel Garcia
2016-02-17Set up m0 clockless output to use fixed scale8 codeDaniel Garcia
2016-02-17FIx scale8 in the avr 3-wire outputDaniel Garcia
2016-02-16Add TM1803 parallel timingsDaniel Garcia
2016-02-16Initial doxygen-zie of CRBGDaniel Garcia
2016-02-16Cylon should use the DATA_PIN #defineDaniel Garcia
2016-02-15Merge branch 'master' of https://github.com/FastLED/FastLEDDaniel Garcia
2016-02-15Adding ESP8266 to the readmeDaniel Garcia
2016-01-28Fix #253 - kick APA102 default ordering to be consistently RGBDaniel Garcia
2016-01-26Update readme/release notesDaniel Garcia
2016-01-26Add pin definitions and platform bits for the wino - Fix #250Daniel Garcia
2016-01-26Fix #249 - max pin typoDaniel Garcia
2016-01-24crediting source of cycle count codeDaniel Garcia
2016-01-24Updating notesDaniel Garcia
2016-01-24Update release notes/readmeDaniel Garcia
2016-01-24Finishing up ESP8266 support - now fully functional.Daniel Garcia
2016-01-24ESP8266 first light - FastPin, bitbang'd spi outputDaniel Garcia
2016-01-24Switch Teensy parallel output to use CPixelLEDController objectsDaniel Garcia
2016-01-24Make the OctoWS2811 controller use the new pixel led controllerDaniel Garcia
2016-01-24Make showColor power awareDaniel Garcia
2016-01-24DUE parallel controller now uses CPixelLedController as a baseDaniel Garcia
2016-01-24Merge Pixel and MultiPixelControllerDaniel Garcia
2016-01-24More work on merging Pixel/MultiPixelControllerDaniel Garcia
2016-01-23Swap MPC template argument ordering to prep for merging the pixel/multi ↵Daniel Garcia
pixel controllers
2016-01-23Merge branch 'master' into rgbwDaniel Garcia
2016-01-23Merge branch 'master' of https://github.com/FastLED/FastLEDDaniel Garcia
2016-01-23Better adjusted delays for bitbang'd spi output.Daniel Garcia
2016-01-22Speedup in basic HSV to RGB conversion. On AVR this takes us from from ↵Mark Kriegsman
about 68,000 conversions/second to about 105,000 conversions/second.
2016-01-22Changes to rgb2hsv_approximate. Improvements, I think, even.Mark Kriegsman
2016-01-19Better distribution of delay cycles for bitbang'd spi output - currently ↵Daniel Garcia
require a minimum of one cycle delay between each step for the time being
2016-01-19Add a variant of delaycycles that will always delay at least one cycle.Daniel Garcia
2016-01-19Clean up warnings in avr fastpinDaniel Garcia
2016-01-19Yank out some debug code that shouldn't have gotten checked in in the first ↵Daniel Garcia
place.
2016-01-07Merge branch 'master' of https://github.com/FastLED/FastLEDDaniel Garcia
2016-01-07oopsDaniel Garcia
2016-01-0712% speedup in noise on AVR (net with previous commit) by using inline avg15 ↵Mark Kriegsman
on AVRs with MUL. Code size goes up 8 bytes for 16-bit, 3-D noise.
2016-01-073% speedup in noise on AVR by eliminating a shift-loop. Math is identical, ↵Mark Kriegsman
output results tested and found identical in every case tested.
2016-01-07Merge branch 'master' of https://github.com/FastLED/FastLEDMark Kriegsman
2016-01-07scale16 faster and smaller - no need to initialize 'result' to zero since ↵Mark Kriegsman
we're going to overwrite it. A little gcc asm shenanigans required to get this all right in terms of '=r' versus '+r' on the variable usage tag in the asm block. Basically the = versus + don't want to think about multi-byte variables. Coincidentally, neither do I.