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
path: root/src
AgeCommit message (Collapse)Author
2022-01-02Add brightness and blend defaults to fill_paletteDavid Madison
2022-01-02Create fill_palette_circular functionDavid Madison
2022-01-02Refactor fill "endless" as fill "circular"David Madison
2021-08-09Add fill_rainbow_endless util functionsDavid Madison
For filling a rainbow pattern that's continuous in hue between the end of the strip and the beginning. Useful for out-of-the-box rainbow animations on looped strips and LED rings.
2021-07-18Merge pull request #1256 from sascha432/FastLED_masterMark Kriegsman
Fix for ESP8266 board sdk 3.0.0, was glitching LEDs due to by NMI
2021-07-18Merge branch 'master' of https://github.com/FastLED/FastLEDSam Guyer
Needed to make git happy
2021-07-18Merge pull request #1251 from aykevl/fix-perlin-simplexMark Kriegsman
Fix incorrectly calling Perlin noise "Simplex Noise"
2021-07-18Merge pull request #1240 from ChristofKaufmann/fix_missing_constMark Kriegsman
Add missing 'const' in unary operator-
2021-07-18Merge branch 'master' of https://github.com/ntwallace/FastLED into ↵Sam Guyer
ntwallace-master Merging ntwallace code to support hardware SPI on ESP32
2021-07-18Merge pull request #1245 from sethtroisi/new_scaleMark Kriegsman
Add scale8(uint8) -- which may cause a behavior change if a uint32_t was being passed in, but this is definitely a 'fix'.
2021-07-18Merge pull request #1222 from markuslang79/masterSam Guyer
Use FASTLED_INTERNAL define to suppress pragma message from the ESP32 I2S driver
2021-07-18Merge pull request #1226 from i164j9/patch-1Mark Kriegsman
Defined MS_COUNTER for teensy.
2021-07-11increased WAIT_TIMEsascha
2021-07-11delayMicroseconds(WAIT_TIME) after aborting a framesascha
2021-07-08fix for glichting LEDs cause by NMIsascha
2021-06-22Fix incorrectly calling perlin noise "Simplex Noise"Ayke van Laethem
Simplex noise is something different and is not implemented by the FastLED library (yet!). Therefore, don't confuse people by calling it Simplex Noise.
2021-06-03Add scale8(uint8)Seth Troisi
2021-05-26Add missing const in unary operator-Christof Kaufmann
2021-04-29Make sure we don't reallocate the buffer unnecessarilySam Guyer
2021-04-29Merge branch 'master' of https://github.com/FastLED/FastLEDSam Guyer
2021-04-29Fix for issue where program calls setLEDs to change the number of LEDsSam Guyer
2021-04-23Defined MS_COUNTERi164j9
Declared MS_COUNTER and initialized to 0 previously undefined when using with teensy 4.1
2021-04-12disable pragma message if the already used FASTLED_INTERNAL define is setMarkus Lang
2021-03-23Make smoother, richer, and brighter HSV colors anytime that 'saturation' is ↵Mark Kriegsman
not 255, e.g. in fill_rainbow, as used in DemoReel100.
2021-03-23Minor cleanup to HSV code. It had been compiling differently recently on AVR ↵Mark Kriegsman
Arduinos, leading (sometimes) to a visible red pixel in the middle of the yellow part of the rainbow, and possibly other color glitches. I believe this fixes #1188.
2021-03-22Merge pull request #1209 from brickstuff/patch-2Mark Kriegsman
Add ATTiny88 in led_sysdefs_avr.h
2021-03-19Update led_sysdefs_avr.hbrickstuff
Added definition to support ATTiny88.
2021-03-18fix merge conflictCraig Link
2021-03-15Merge pull request #1191 from sethtroisi/mainMark Kriegsman
Add Particle Photon(STM32F2XX) support
2021-03-15Merge pull request #1197 from craiglink/ArdunioNanoEveryMark Kriegsman
Ardunio Nona Every optimizations
2021-03-15Merge pull request #1181 from chroma-tech/fix_rmt_esp32s2Sam Guyer
Fixed ESP32 clockless RMT to work on ESP32S2
2021-02-28Add native SPI support for ARM D51 (and others) by providing a Ardunio.Core ↵Craig Link
SPI wrapper Add support for Seeed Wio Terminal Verified with Neopixel and Dotstar stripping using either SPI or GPIO pins
2021-02-28add VPORT commentCraig Link
2021-02-28optimize Ardunio Nano Every pin out to single cycle by using VPORTsCraig Link
from the ATMEga4809 Datasheet - http://ww1.microchip.com/downloads/en/DeviceDoc/ATmega4808-4809-Data-Sheet-DS40002173A.pdf 16.3.2.3 Virtual Ports The Virtual PORT registers map the most frequently used regular PORT registers into the bit-accessible I/O space. Writing to the Virtual PORT registers has the same effect as writing to the regular registers, but allows for memoryspecific instructions, such as bit-manipulation instructions, which are not valid for the extended I/O memory space where the regular PORT registers reside
2021-02-26adjust PIN numbers for SPI to match GPIOCraig Link
2021-02-25enable hahardware support for Ardunio Nano EveryCraig Link
2021-02-22Add support for Seeed Wio TerminalCraig Link
2021-02-22Add support for Adafruit MatrixPortal M4Talljoe
2021-02-15Add Particle Photon(STM32F2XX) supportSeth Troisi
Pinout and other changes upstreamed from https://github.com/focalintent/FastLED-Sparkcore/blob/master/firmware/fastpin_arm_stm32.h
2021-01-22Fixed ESP32 clockless RMT to work on ESP32S2Shlomo Zippel
2021-01-12Merge pull request #1170 from estshorter/fix_unused_variableSam Guyer
Remove an unused variable 'stuff_to_do'
2021-01-09Fix deprecated warnings about #include "esp_intr.h"estshorter
2021-01-09Remove an unused variable 'stuff_to_do'estshorter
2021-01-03Add hardware SPI support for Arduino Nano EveryTom Miller
2020-12-30Merge pull request #1163 from samguyer/masterSam Guyer
Fix for a bug that was limiting parallelism
2020-12-30Fix for a bug that was limiting parallelism -- incorrectly managed mem ↵Sam Guyer
blocks and max channel values
2020-12-29Merge pull request #1149 from 80Stepko08/masterMark Kriegsman
Blur2d update to allow for arbitrary pixel layouts; this version now calls XY(i,j) for each pixel, rather than assuming any sort of linear/sequential layout.
2020-12-28Merge pull request #1152 from jandelgado/compile_avr_trig8_code_conditionallyMark Kriegsman
include optimized sin/cos code for AVR only when on this platform
2020-12-28Merge pull request #1127 from drzony/esp32-compile-fixSam Guyer
Compilation fix when using I2S on ESP32
2020-12-25include optimized sin/cos code for AVR only when on this platformJan Delgado