├── .gitignore ├── FastLED.cpp ├── FastLED.h ├── LICENSE ├── PORTING.md ├── README.md ├── bitswap.cpp ├── bitswap.h ├── chipsets.h ├── color.h ├── colorpalettes.cpp ├── colorpalettes.h ├── colorutils.cpp ├── colorutils.h ├── controller.h ├── cpp_compat.h ├── dmx.h ├── docs ├── Doxyfile └── mainpage.dox ├── examples ├── AnalogOutput │ └── AnalogOutput.ino ├── Blink │ └── Blink.ino ├── ColorPalette │ └── ColorPalette.ino ├── ColorTemperature │ └── ColorTemperature.ino ├── Cylon │ └── Cylon.ino ├── DemoReel100 │ └── DemoReel100.ino ├── DemoReelESP32 │ └── DemoReelESP32.ino ├── Fire2012 │ └── Fire2012.ino ├── Fire2012WithPalette │ └── Fire2012WithPalette.ino ├── FirstLight │ └── FirstLight.ino ├── Multiple │ ├── ArrayOfLedArrays │ │ └── ArrayOfLedArrays.ino │ ├── MirroringSample │ │ └── MirroringSample.ino │ ├── MultiArrays │ │ └── MultiArrays.ino │ ├── MultipleStripsInOneArray │ │ └── MultipleStripsInOneArray.ino │ ├── OctoWS2811Demo │ │ └── OctoWS2811Demo.ino │ └── ParallelOutputDemo │ │ └── ParallelOutputDemo.ino ├── Noise │ └── Noise.ino ├── NoisePlayground │ └── NoisePlayground.ino ├── NoisePlusPalette │ └── NoisePlusPalette.ino ├── Pintest │ └── Pintest.ino ├── Ports │ └── PJRCSpectrumAnalyzer │ │ └── PJRCSpectrumAnalyzer.ino ├── RGBCalibrate │ └── RGBCalibrate.ino ├── RGBSetDemo │ └── RGBSetDemo.ino ├── SmartMatrix │ └── SmartMatrix.ino └── XYMatrix │ └── XYMatrix.ino ├── extras ├── AppleII.s65 ├── FastLED6502.s65 ├── RainbowDemo.bin.zip └── RainbowDemo.s65 ├── fastled_config.h ├── fastled_delay.h ├── fastled_progmem.h ├── fastpin.h ├── fastspi.h ├── fastspi_bitbang.h ├── fastspi_dma.h ├── fastspi_nop.h ├── fastspi_ref.h ├── fastspi_types.h ├── hsv2rgb.cpp ├── hsv2rgb.h ├── keywords.txt ├── led_sysdefs.h ├── lib8tion.cpp ├── lib8tion.h ├── lib8tion ├── math8.h ├── random8.h ├── scale8.h └── trig8.h ├── library.json ├── library.properties ├── noise.cpp ├── noise.h ├── pixelset.h ├── pixeltypes.h ├── platforms.h ├── platforms ├── arm │ ├── common │ │ └── m0clockless.h │ ├── d21 │ │ ├── clockless_arm_d21.h │ │ ├── fastled_arm_d21.h │ │ ├── fastpin_arm_d21.h │ │ └── led_sysdefs_arm_d21.h │ ├── k20 │ │ ├── clockless_arm_k20.h │ │ ├── clockless_block_arm_k20.h │ │ ├── fastled_arm_k20.h │ │ ├── fastpin_arm_k20.h │ │ ├── fastspi_arm_k20.h │ │ ├── led_sysdefs_arm_k20.h │ │ ├── octows2811_controller.h │ │ ├── smartmatrix_t3.h │ │ └── ws2812serial_controller.h │ ├── k66 │ │ ├── clockless_arm_k66.h │ │ ├── clockless_block_arm_k66.h │ │ ├── fastled_arm_k66.h │ │ ├── fastpin_arm_k66.h │ │ ├── fastspi_arm_k66.h │ │ └── led_sysdefs_arm_k66.h │ ├── kl26 │ │ ├── clockless_arm_kl26.h │ │ ├── fastled_arm_kl26.h │ │ ├── fastpin_arm_kl26.h │ │ ├── fastspi_arm_kl26.h │ │ └── led_sysdefs_arm_kl26.h │ ├── nrf51 │ │ ├── clockless_arm_nrf51.h │ │ ├── fastled_arm_nrf51.h │ │ ├── fastpin_arm_nrf51.h │ │ ├── fastspi_arm_nrf51.h │ │ └── led_sysdefs_arm_nrf51.h │ ├── sam │ │ ├── clockless_arm_sam.h │ │ ├── clockless_block_arm_sam.h │ │ ├── fastled_arm_sam.h │ │ ├── fastpin_arm_sam.h │ │ ├── fastspi_arm_sam.h │ │ └── led_sysdefs_arm_sam.h │ └── stm32 │ │ ├── clockless_arm_stm32.h │ │ ├── fastled_arm_stm32.h │ │ ├── fastpin_arm_stm32.h │ │ └── led_sysdefs_arm_stm32.h ├── avr │ ├── clockless_trinket.h │ ├── fastled_avr.h │ ├── fastpin_avr.h │ ├── fastspi_avr.h │ └── led_sysdefs_avr.h └── esp │ ├── 32 │ ├── clockless_block_esp32.h │ ├── clockless_esp32.h │ ├── fastled_esp32.h │ ├── fastpin_esp32.h │ └── led_sysdefs_esp32.h │ └── 8266 │ ├── clockless_block_esp8266.h │ ├── clockless_esp8266.h │ ├── fastled_esp8266.h │ ├── fastpin_esp8266.h │ └── led_sysdefs_esp8266.h ├── power_mgt.cpp ├── power_mgt.h ├── preview_changes.txt ├── release_notes.md └── wiring.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | *.gch 3 | -------------------------------------------------------------------------------- /FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/FastLED.cpp -------------------------------------------------------------------------------- /FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/FastLED.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/LICENSE -------------------------------------------------------------------------------- /PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/PORTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/README.md -------------------------------------------------------------------------------- /bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/bitswap.cpp -------------------------------------------------------------------------------- /bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/bitswap.h -------------------------------------------------------------------------------- /chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/chipsets.h -------------------------------------------------------------------------------- /color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/color.h -------------------------------------------------------------------------------- /colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/colorpalettes.cpp -------------------------------------------------------------------------------- /colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/colorpalettes.h -------------------------------------------------------------------------------- /colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/colorutils.cpp -------------------------------------------------------------------------------- /colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/colorutils.h -------------------------------------------------------------------------------- /controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/controller.h -------------------------------------------------------------------------------- /cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/cpp_compat.h -------------------------------------------------------------------------------- /dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/dmx.h -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/docs/mainpage.dox -------------------------------------------------------------------------------- /examples/AnalogOutput/AnalogOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/AnalogOutput/AnalogOutput.ino -------------------------------------------------------------------------------- /examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /examples/ColorPalette/ColorPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/ColorPalette/ColorPalette.ino -------------------------------------------------------------------------------- /examples/ColorTemperature/ColorTemperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/ColorTemperature/ColorTemperature.ino -------------------------------------------------------------------------------- /examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /examples/DemoReel100/DemoReel100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/DemoReel100/DemoReel100.ino -------------------------------------------------------------------------------- /examples/DemoReelESP32/DemoReelESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/DemoReelESP32/DemoReelESP32.ino -------------------------------------------------------------------------------- /examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /examples/Fire2012WithPalette/Fire2012WithPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Fire2012WithPalette/Fire2012WithPalette.ino -------------------------------------------------------------------------------- /examples/FirstLight/FirstLight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/FirstLight/FirstLight.ino -------------------------------------------------------------------------------- /examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino -------------------------------------------------------------------------------- /examples/Multiple/MirroringSample/MirroringSample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Multiple/MirroringSample/MirroringSample.ino -------------------------------------------------------------------------------- /examples/Multiple/MultiArrays/MultiArrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Multiple/MultiArrays/MultiArrays.ino -------------------------------------------------------------------------------- /examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino -------------------------------------------------------------------------------- /examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino -------------------------------------------------------------------------------- /examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino -------------------------------------------------------------------------------- /examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /examples/NoisePlayground/NoisePlayground.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/NoisePlayground/NoisePlayground.ino -------------------------------------------------------------------------------- /examples/NoisePlusPalette/NoisePlusPalette.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/NoisePlusPalette/NoisePlusPalette.ino -------------------------------------------------------------------------------- /examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino -------------------------------------------------------------------------------- /examples/RGBCalibrate/RGBCalibrate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/RGBCalibrate/RGBCalibrate.ino -------------------------------------------------------------------------------- /examples/RGBSetDemo/RGBSetDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/RGBSetDemo/RGBSetDemo.ino -------------------------------------------------------------------------------- /examples/SmartMatrix/SmartMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/SmartMatrix/SmartMatrix.ino -------------------------------------------------------------------------------- /examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/extras/AppleII.s65 -------------------------------------------------------------------------------- /extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastled_config.h -------------------------------------------------------------------------------- /fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastled_delay.h -------------------------------------------------------------------------------- /fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastled_progmem.h -------------------------------------------------------------------------------- /fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastpin.h -------------------------------------------------------------------------------- /fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastspi.h -------------------------------------------------------------------------------- /fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastspi_bitbang.h -------------------------------------------------------------------------------- /fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastspi_nop.h -------------------------------------------------------------------------------- /fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastspi_ref.h -------------------------------------------------------------------------------- /fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/fastspi_types.h -------------------------------------------------------------------------------- /hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/hsv2rgb.cpp -------------------------------------------------------------------------------- /hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/hsv2rgb.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/keywords.txt -------------------------------------------------------------------------------- /led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/led_sysdefs.h -------------------------------------------------------------------------------- /lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/lib8tion.cpp -------------------------------------------------------------------------------- /lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/lib8tion.h -------------------------------------------------------------------------------- /lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/lib8tion/math8.h -------------------------------------------------------------------------------- /lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/lib8tion/random8.h -------------------------------------------------------------------------------- /lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/lib8tion/scale8.h -------------------------------------------------------------------------------- /lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/lib8tion/trig8.h -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/library.properties -------------------------------------------------------------------------------- /noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/noise.cpp -------------------------------------------------------------------------------- /noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/noise.h -------------------------------------------------------------------------------- /pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/pixelset.h -------------------------------------------------------------------------------- /pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/pixeltypes.h -------------------------------------------------------------------------------- /platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms.h -------------------------------------------------------------------------------- /platforms/arm/common/m0clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/common/m0clockless.h -------------------------------------------------------------------------------- /platforms/arm/d21/clockless_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/d21/clockless_arm_d21.h -------------------------------------------------------------------------------- /platforms/arm/d21/fastled_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/d21/fastled_arm_d21.h -------------------------------------------------------------------------------- /platforms/arm/d21/fastpin_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/d21/fastpin_arm_d21.h -------------------------------------------------------------------------------- /platforms/arm/d21/led_sysdefs_arm_d21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/d21/led_sysdefs_arm_d21.h -------------------------------------------------------------------------------- /platforms/arm/k20/clockless_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/clockless_arm_k20.h -------------------------------------------------------------------------------- /platforms/arm/k20/clockless_block_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/clockless_block_arm_k20.h -------------------------------------------------------------------------------- /platforms/arm/k20/fastled_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/fastled_arm_k20.h -------------------------------------------------------------------------------- /platforms/arm/k20/fastpin_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/fastpin_arm_k20.h -------------------------------------------------------------------------------- /platforms/arm/k20/fastspi_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/fastspi_arm_k20.h -------------------------------------------------------------------------------- /platforms/arm/k20/led_sysdefs_arm_k20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/led_sysdefs_arm_k20.h -------------------------------------------------------------------------------- /platforms/arm/k20/octows2811_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/octows2811_controller.h -------------------------------------------------------------------------------- /platforms/arm/k20/smartmatrix_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/smartmatrix_t3.h -------------------------------------------------------------------------------- /platforms/arm/k20/ws2812serial_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k20/ws2812serial_controller.h -------------------------------------------------------------------------------- /platforms/arm/k66/clockless_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k66/clockless_arm_k66.h -------------------------------------------------------------------------------- /platforms/arm/k66/clockless_block_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k66/clockless_block_arm_k66.h -------------------------------------------------------------------------------- /platforms/arm/k66/fastled_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k66/fastled_arm_k66.h -------------------------------------------------------------------------------- /platforms/arm/k66/fastpin_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k66/fastpin_arm_k66.h -------------------------------------------------------------------------------- /platforms/arm/k66/fastspi_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k66/fastspi_arm_k66.h -------------------------------------------------------------------------------- /platforms/arm/k66/led_sysdefs_arm_k66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/k66/led_sysdefs_arm_k66.h -------------------------------------------------------------------------------- /platforms/arm/kl26/clockless_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/kl26/clockless_arm_kl26.h -------------------------------------------------------------------------------- /platforms/arm/kl26/fastled_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/kl26/fastled_arm_kl26.h -------------------------------------------------------------------------------- /platforms/arm/kl26/fastpin_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/kl26/fastpin_arm_kl26.h -------------------------------------------------------------------------------- /platforms/arm/kl26/fastspi_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/kl26/fastspi_arm_kl26.h -------------------------------------------------------------------------------- /platforms/arm/kl26/led_sysdefs_arm_kl26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/kl26/led_sysdefs_arm_kl26.h -------------------------------------------------------------------------------- /platforms/arm/nrf51/clockless_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/nrf51/clockless_arm_nrf51.h -------------------------------------------------------------------------------- /platforms/arm/nrf51/fastled_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/nrf51/fastled_arm_nrf51.h -------------------------------------------------------------------------------- /platforms/arm/nrf51/fastpin_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/nrf51/fastpin_arm_nrf51.h -------------------------------------------------------------------------------- /platforms/arm/nrf51/fastspi_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/nrf51/fastspi_arm_nrf51.h -------------------------------------------------------------------------------- /platforms/arm/nrf51/led_sysdefs_arm_nrf51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/nrf51/led_sysdefs_arm_nrf51.h -------------------------------------------------------------------------------- /platforms/arm/sam/clockless_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/sam/clockless_arm_sam.h -------------------------------------------------------------------------------- /platforms/arm/sam/clockless_block_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/sam/clockless_block_arm_sam.h -------------------------------------------------------------------------------- /platforms/arm/sam/fastled_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/sam/fastled_arm_sam.h -------------------------------------------------------------------------------- /platforms/arm/sam/fastpin_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/sam/fastpin_arm_sam.h -------------------------------------------------------------------------------- /platforms/arm/sam/fastspi_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/sam/fastspi_arm_sam.h -------------------------------------------------------------------------------- /platforms/arm/sam/led_sysdefs_arm_sam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/sam/led_sysdefs_arm_sam.h -------------------------------------------------------------------------------- /platforms/arm/stm32/clockless_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/stm32/clockless_arm_stm32.h -------------------------------------------------------------------------------- /platforms/arm/stm32/fastled_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/stm32/fastled_arm_stm32.h -------------------------------------------------------------------------------- /platforms/arm/stm32/fastpin_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/stm32/fastpin_arm_stm32.h -------------------------------------------------------------------------------- /platforms/arm/stm32/led_sysdefs_arm_stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/arm/stm32/led_sysdefs_arm_stm32.h -------------------------------------------------------------------------------- /platforms/avr/clockless_trinket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/avr/clockless_trinket.h -------------------------------------------------------------------------------- /platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /platforms/avr/led_sysdefs_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/avr/led_sysdefs_avr.h -------------------------------------------------------------------------------- /platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /platforms/esp/32/clockless_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/32/clockless_esp32.h -------------------------------------------------------------------------------- /platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /platforms/esp/8266/clockless_block_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/8266/clockless_block_esp8266.h -------------------------------------------------------------------------------- /platforms/esp/8266/clockless_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/8266/clockless_esp8266.h -------------------------------------------------------------------------------- /platforms/esp/8266/fastled_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/8266/fastled_esp8266.h -------------------------------------------------------------------------------- /platforms/esp/8266/fastpin_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/8266/fastpin_esp8266.h -------------------------------------------------------------------------------- /platforms/esp/8266/led_sysdefs_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/platforms/esp/8266/led_sysdefs_esp8266.h -------------------------------------------------------------------------------- /power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/power_mgt.cpp -------------------------------------------------------------------------------- /power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/power_mgt.h -------------------------------------------------------------------------------- /preview_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/preview_changes.txt -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/release_notes.md -------------------------------------------------------------------------------- /wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmteZogaf/FastLED/HEAD/wiring.cpp --------------------------------------------------------------------------------