├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── THREADING.md ├── components ├── FastLED-idf │ ├── CMakeLists.txt │ ├── ESP-IDF.md │ ├── FastLED.cpp │ ├── FastLED.h │ ├── Kconfig │ ├── LICENSE │ ├── PORTING.md │ ├── README.md │ ├── bitswap.cpp │ ├── bitswap.h │ ├── chipsets.h │ ├── color.h │ ├── colorpalettes.cpp │ ├── colorpalettes.h │ ├── colorutils.cpp │ ├── colorutils.h │ ├── component.mk │ ├── controller.h │ ├── cpp_compat.h │ ├── dmx.h │ ├── 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 │ ├── hal │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── esp32-hal-cpu.h │ │ ├── esp32-hal-gpio.c │ │ ├── esp32-hal-gpio.h │ │ ├── esp32-hal-i2c.h │ │ ├── esp32-hal-log.h │ │ ├── esp32-hal-misc.c │ │ ├── esp32-hal-timer.h │ │ └── esp32-hal.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.cpp │ ├── platforms.h │ ├── platforms │ │ └── esp │ │ │ └── 32 │ │ │ ├── clockless_block_esp32.h │ │ │ ├── clockless_i2s_esp32.h │ │ │ ├── clockless_rmt_esp32.cpp │ │ │ ├── clockless_rmt_esp32.h │ │ │ ├── fastled_esp32.h │ │ │ ├── fastpin_esp32.h │ │ │ ├── fastspi_esp32.h │ │ │ └── led_sysdefs_esp32.h │ ├── power_mgt.cpp │ ├── power_mgt.h │ ├── release_notes.md │ └── wiring.cpp └── WS2812FX-idf │ ├── CMakeLists.txt │ ├── FX.cpp │ ├── FX.h │ ├── FX_fcn.cpp │ ├── LICENSE │ ├── README.md │ ├── component.mk │ └── palettes.h ├── main ├── CMakeLists.txt ├── component.mk ├── main.cpp └── palettes.h ├── partitions.csv ├── sdkconfig ├── sdkconfig.4-0 ├── sdkconfig.4-1 └── sdkconfig.4-2 /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/README.md -------------------------------------------------------------------------------- /THREADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/THREADING.md -------------------------------------------------------------------------------- /components/FastLED-idf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/CMakeLists.txt -------------------------------------------------------------------------------- /components/FastLED-idf/ESP-IDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/ESP-IDF.md -------------------------------------------------------------------------------- /components/FastLED-idf/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/FastLED.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/FastLED.h -------------------------------------------------------------------------------- /components/FastLED-idf/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/Kconfig -------------------------------------------------------------------------------- /components/FastLED-idf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/LICENSE -------------------------------------------------------------------------------- /components/FastLED-idf/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/PORTING.md -------------------------------------------------------------------------------- /components/FastLED-idf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/README.md -------------------------------------------------------------------------------- /components/FastLED-idf/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/bitswap.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/bitswap.h -------------------------------------------------------------------------------- /components/FastLED-idf/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/chipsets.h -------------------------------------------------------------------------------- /components/FastLED-idf/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/color.h -------------------------------------------------------------------------------- /components/FastLED-idf/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/colorpalettes.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/colorpalettes.h -------------------------------------------------------------------------------- /components/FastLED-idf/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/colorutils.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/colorutils.h -------------------------------------------------------------------------------- /components/FastLED-idf/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/component.mk -------------------------------------------------------------------------------- /components/FastLED-idf/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/controller.h -------------------------------------------------------------------------------- /components/FastLED-idf/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/cpp_compat.h -------------------------------------------------------------------------------- /components/FastLED-idf/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/dmx.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastled_config.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastled_delay.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastled_progmem.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastpin.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastspi.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastspi_bitbang.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastspi_dma.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/FastLED-idf/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastspi_nop.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastspi_ref.h -------------------------------------------------------------------------------- /components/FastLED-idf/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/fastspi_types.h -------------------------------------------------------------------------------- /components/FastLED-idf/hal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/LICENSE.md -------------------------------------------------------------------------------- /components/FastLED-idf/hal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/README.md -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-cpu.h -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-gpio.c -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-gpio.h -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-i2c.h -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-log.h -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-misc.c -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal-timer.h -------------------------------------------------------------------------------- /components/FastLED-idf/hal/esp32-hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hal/esp32-hal.h -------------------------------------------------------------------------------- /components/FastLED-idf/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hsv2rgb.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/hsv2rgb.h -------------------------------------------------------------------------------- /components/FastLED-idf/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/keywords.txt -------------------------------------------------------------------------------- /components/FastLED-idf/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/led_sysdefs.h -------------------------------------------------------------------------------- /components/FastLED-idf/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/lib8tion.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/lib8tion.h -------------------------------------------------------------------------------- /components/FastLED-idf/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/lib8tion/math8.h -------------------------------------------------------------------------------- /components/FastLED-idf/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/lib8tion/random8.h -------------------------------------------------------------------------------- /components/FastLED-idf/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/lib8tion/scale8.h -------------------------------------------------------------------------------- /components/FastLED-idf/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/lib8tion/trig8.h -------------------------------------------------------------------------------- /components/FastLED-idf/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/library.json -------------------------------------------------------------------------------- /components/FastLED-idf/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/library.properties -------------------------------------------------------------------------------- /components/FastLED-idf/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/noise.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/noise.h -------------------------------------------------------------------------------- /components/FastLED-idf/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/pixelset.h -------------------------------------------------------------------------------- /components/FastLED-idf/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/pixeltypes.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/clockless_block_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/clockless_block_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/clockless_i2s_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/clockless_i2s_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/clockless_rmt_esp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/clockless_rmt_esp32.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/clockless_rmt_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/clockless_rmt_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/fastled_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/fastled_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/fastpin_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/fastpin_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/fastspi_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/fastspi_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/platforms/esp/32/led_sysdefs_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/platforms/esp/32/led_sysdefs_esp32.h -------------------------------------------------------------------------------- /components/FastLED-idf/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/power_mgt.cpp -------------------------------------------------------------------------------- /components/FastLED-idf/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/power_mgt.h -------------------------------------------------------------------------------- /components/FastLED-idf/release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/release_notes.md -------------------------------------------------------------------------------- /components/FastLED-idf/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/FastLED-idf/wiring.cpp -------------------------------------------------------------------------------- /components/WS2812FX-idf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/CMakeLists.txt -------------------------------------------------------------------------------- /components/WS2812FX-idf/FX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/FX.cpp -------------------------------------------------------------------------------- /components/WS2812FX-idf/FX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/FX.h -------------------------------------------------------------------------------- /components/WS2812FX-idf/FX_fcn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/FX_fcn.cpp -------------------------------------------------------------------------------- /components/WS2812FX-idf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/LICENSE -------------------------------------------------------------------------------- /components/WS2812FX-idf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/README.md -------------------------------------------------------------------------------- /components/WS2812FX-idf/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/component.mk -------------------------------------------------------------------------------- /components/WS2812FX-idf/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/components/WS2812FX-idf/palettes.h -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/main/main.cpp -------------------------------------------------------------------------------- /main/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/main/palettes.h -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.4-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/sdkconfig.4-0 -------------------------------------------------------------------------------- /sdkconfig.4-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/sdkconfig.4-1 -------------------------------------------------------------------------------- /sdkconfig.4-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbulkow/FastLED-idf/HEAD/sdkconfig.4-2 --------------------------------------------------------------------------------