├── .clang-format ├── .clangd ├── .claude ├── agents │ ├── fix-int-agent.md │ ├── lint-agent.md │ └── test-agent.md ├── commands │ ├── f.py │ ├── fix-int.md │ ├── gh-debug.md │ ├── gh-healthcheck.md │ ├── lint.md │ └── test.md └── settings.local.json ├── .cursor └── mcp.json ├── .cursorignore ├── .cursorrules ├── .devcontainer ├── Dockerfile ├── README.md └── devcontainer.json ├── .github └── workflows │ ├── README.md │ ├── arduino_library_lint.yml │ ├── build.yml │ ├── build_adafruit_feather_nrf52840_sense.yml │ ├── build_adafruit_xiaoblesense.yml │ ├── build_apollo3_red.yml │ ├── build_apollo3_thing_explorable.yml │ ├── build_attiny1604.yml │ ├── build_attiny1616.yml │ ├── build_attiny4313.yml │ ├── build_attiny85.yml │ ├── build_attiny88.yml │ ├── build_blackpill_stm32f4.yml │ ├── build_bluepill.yml │ ├── build_clone_and_compile.yml │ ├── build_digix.yml │ ├── build_docker_compiler_base.yml │ ├── build_docker_compiler_platforms.yml │ ├── build_due.yml │ ├── build_esp32_i2s_ws2812.yml │ ├── build_esp32c2.yml │ ├── build_esp32c3.yml │ ├── build_esp32c5.yml │ ├── build_esp32c6.yml │ ├── build_esp32dev.yml │ ├── build_esp32dev_idf3.3.yml │ ├── build_esp32dev_idf4.4.yml │ ├── build_esp32dev_namespace.yml │ ├── build_esp32h2.yml │ ├── build_esp32p4.yml │ ├── build_esp32s2.yml │ ├── build_esp32s3.yml │ ├── build_esp32wroom.yml │ ├── build_esp8266.yml │ ├── build_esp_extra_libs.yml │ ├── build_giga_r1.yml │ ├── build_linux.yml │ ├── build_maple_map.yml │ ├── build_mgm240s_thingplusmatter.yml │ ├── build_nano_every.yml │ ├── build_nrf52840_dk.yml │ ├── build_nrf52_xiaoblesense.yml │ ├── build_rgbw.yml │ ├── build_rp2040.yml │ ├── build_rp2040_earle.yml │ ├── build_rp2350.yml │ ├── build_rp2350B.yml │ ├── build_stm103tb.yml │ ├── build_teensy30.yml │ ├── build_teensy31.yml │ ├── build_teensy40.yml │ ├── build_teensy41.yml │ ├── build_teensy41_ofled.yml │ ├── build_teensyLC.yml │ ├── build_teensy_octo.yml │ ├── build_template.yml │ ├── build_template_binary_size.yml │ ├── build_template_custom_board.yml │ ├── build_unit_test.yml │ ├── build_uno.yml │ ├── build_uno_r4_wifif.yml │ ├── build_wasm.yml │ ├── build_wasm_compilers.yml │ ├── build_yun.yml │ ├── check_attiny85.yml │ ├── check_bluepill_size.yml │ ├── check_esp32_size.yml │ ├── check_teensy30_size.yml │ ├── check_teensy31_size.yml │ ├── check_teensy41_size.yml │ ├── check_teensylc_size.yml │ ├── check_uno_size.yml │ ├── claude.yml │ ├── docs2.yml │ ├── header-perf.yml │ ├── qemu_esp32c3_test.yml │ ├── qemu_esp32dev_test.yml │ ├── qemu_esp32dev_tobozo2_test.yml │ ├── qemu_esp32p4_test.yml │ ├── qemu_esp32s3_test.yml │ ├── qemu_template.yml │ ├── qemu_template2.yml │ ├── qemu_tobozo2.yml │ └── template_build_docker_compiler.yml ├── .gitignore ├── .gitmodules ├── .plans └── mpeg.md ├── .vscode ├── DarrenLevine.auto-debug-1.0.2.vsix ├── extensions.json ├── keybindings.json ├── launch.json ├── launch.json.backup ├── settings.json └── tasks.json ├── ADVANCED_DEVELOPMENT.md ├── APA102.md ├── CLAUDE.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CORKSCREW.md ├── FEATURE_QUAD_SPI_EXTRA.md ├── GEMINI.md ├── JPEG_PROGRESSIVE.md ├── LAYOUT.md ├── LICENSE ├── PORTING.md ├── QWEN.md ├── README.md ├── RELEASE.md ├── RMT.md ├── RUN_DESIGN.md ├── TASK.md ├── TASK2.md ├── TASK_LCD_PARLIO.md ├── TASK_PARLIO.md ├── TESTCASE_INSTRUCTIONS.md ├── TODO.md ├── VIDEO.md ├── apa102fix.md ├── ci ├── .eslintrc.js ├── AGENTS.md ├── BUILD_SYSTEM_MIGRATION.md ├── README.md ├── SYMBOL_ANALYSIS.md ├── __init__.py ├── adafruit_bridge │ ├── adafruit_bridge.ino.cpp │ └── platformio.ini ├── boards.py ├── boards │ ├── bluepill.json │ ├── esp32-c2-devkitm-1.json │ ├── esp32-c6-devkitc-1.json │ ├── esp32-h2-devkitm-1.json │ ├── giga.json │ ├── nrf52840_dk.json │ ├── rpipico.json │ ├── rpipico2.json │ └── rpipicow.json ├── build_commands.toml ├── build_docker_image_pio.py ├── build_example.toml ├── build_unit.toml ├── check-js-types.py ├── ci-check-compiled-size.py ├── ci-compile ├── ci-compile-concurrent-backup.py ├── ci-compile-pio-ci-working.py ├── ci-compile.py ├── ci-compile.save.py ├── ci-cppcheck.py ├── ci-flags.py ├── ci-iwyu.py ├── ci │ └── fingerprint_cache.py ├── compiled_size.py ├── compiled_size_history.py ├── compiler │ ├── __init__.py │ ├── argument_parser.py │ ├── board_example_utils.py │ ├── cache_setup.scons │ ├── compilation_orchestrator.py │ ├── compile_for_board.py │ ├── compiler.py │ ├── docker_manager.py │ ├── esp32_artifacts.py │ ├── esp32_constants.py │ ├── formatting_utils.py │ ├── output_utils.py │ ├── packages.py │ ├── pio.py │ ├── platformio_cache.py │ └── platformio_ini.py ├── decode_esp32_backtrace.py ├── demo_symbol_analysis.py ├── docker │ ├── .dockerignore │ ├── DOCKER_DESIGN.md │ ├── DockerManager.py │ ├── Dockerfile.base │ ├── Dockerfile.template │ ├── README.md │ ├── README.qemu.md │ ├── __init__.py │ ├── build.sh │ ├── build_image.py │ ├── build_platforms.py │ ├── prune_old_images.py │ ├── qemu_esp32_docker.py │ ├── qemu_test_integration.py │ └── task.md ├── docs.py ├── esp32_symbol_analysis_runner.py ├── examples │ └── fingerprint_cache_demo.py ├── inspect_binary.py ├── inspect_elf.py ├── inspect_obj.py ├── iwyu │ ├── fastled.imp │ └── stdlib.imp ├── js │ └── README.md ├── js_lint_cache.py ├── kitchensink │ ├── kitchensink.ino.cpp │ └── platformio.ini ├── lint-js-fast ├── lint-js-fast.backup ├── lint_cpp │ ├── check_namespace_includes.py │ ├── check_using_namespace.py │ ├── no_using_namespace_fl_in_headers.py │ ├── test_no_banned_headers.py │ └── test_no_std_namespace.py ├── native │ └── platformio.ini ├── optimization_report.py ├── perf │ ├── README.md │ ├── compile_perf.py │ ├── test_compile.cpp │ └── thresholds.json ├── pyright-cached.py ├── python_lint_cache.py ├── replace_extern_c.py ├── run-clang-format.py ├── run.py ├── run │ ├── __init__.py │ ├── assets │ │ └── theme.css │ ├── core │ │ ├── __init__.py │ │ ├── config.py │ │ ├── runner.py │ │ ├── task.py │ │ └── updater.py │ └── views │ │ ├── __init__.py │ │ ├── all_tests.py │ │ ├── build.py │ │ ├── main_menu.py │ │ ├── python_qa.py │ │ └── unit_tests.py ├── run_test_wasm_local_compile.py ├── run_tests.py ├── setup-js-linting-fast.py ├── setup-llvm.py ├── symbol_analysis_runner.py ├── test_unified_cache.py ├── tests │ ├── conftest.py │ ├── test_bin_2_elf.py │ ├── test_board_to_platformio_ini.py │ ├── test_elf.py │ ├── test_fingerprint_cache.py │ ├── test_flash_merge.py │ ├── test_github_actions_security.py │ ├── test_map_parser.py │ ├── test_missing_pragma_once.py │ ├── test_no_include_after_namespace.py │ ├── test_package.py │ ├── test_pio_merge_bin.py │ ├── test_platformio_ini_class.py │ ├── test_platformio_url_resolution.py │ ├── test_real_platformio_cache.py │ ├── test_running_process.py │ ├── test_symbol_analysis.py │ ├── test_unified_scanner.py │ ├── test_wasm_clang_format.py │ ├── test_wrong_defines.py │ ├── unified_scanner │ │ ├── __init__.py │ │ ├── base_checker.py │ │ ├── checkers │ │ │ ├── __init__.py │ │ │ ├── banned_headers_checker.py │ │ │ ├── define_checker.py │ │ │ ├── namespace_checker.py │ │ │ ├── pragma_once_checker.py │ │ │ └── std_namespace_checker.py │ │ ├── result.py │ │ └── scanner.py │ └── uno │ │ ├── firmware.elf │ │ ├── firmware.hex │ │ └── firmware.map ├── tools │ ├── gh │ │ ├── README.md │ │ ├── __init__.py │ │ ├── gh_healthcheck.py │ │ └── workflow_scanner.py │ └── gh_debug.py ├── util │ ├── __init__.py │ ├── bin_2_elf.py │ ├── build_info_analyzer.py │ ├── build_lock.py │ ├── cached_compiler.py │ ├── ccache_config.py │ ├── check_files.py │ ├── check_implementation_files.py.disabled │ ├── color_output.py │ ├── concurrent_run.py │ ├── console_utf8.py │ ├── cpu_count.py │ ├── create_build_dir.py │ ├── docker_helper.py │ ├── elf.py │ ├── esp32_symbol_analysis.py │ ├── hash_fingerprint_cache.py │ ├── lock_handler.py │ ├── locked_print.py │ ├── map_dump.py │ ├── meson_runner.py │ ├── output_formatter.py │ ├── paths.py │ ├── process_status_display.py │ ├── resumable_downloader.py │ ├── running_process_group.py │ ├── running_process_manager.py │ ├── sccache_config.py │ ├── scrapers │ │ ├── README.md │ │ ├── fastled_python_investigation.md │ │ ├── run_fastled_scraper.py │ │ └── scrape_festival_stick.py │ ├── symbol_analysis.py │ ├── test_args.py │ ├── test_commands.py │ ├── test_env.py │ ├── test_exceptions.py │ ├── test_runner.py │ ├── test_types.py │ ├── tools.py │ ├── unified_test_cache.py │ ├── url_utils.py │ └── xcache.py ├── wasm_compile.py ├── wasm_console_error_test.py └── wasm_test.py ├── clean ├── code_of_conduct.md ├── compile ├── compile.bat ├── component.mk ├── cool_projects.md ├── dev.sh ├── dev └── dev.ino ├── docs ├── Doxyfile ├── DoxygenLayout.xml ├── include │ ├── fastled-docs.css │ ├── fastled_logo.png │ ├── footer.html │ └── header.html ├── javascript-linting.md └── style.css ├── examples ├── AGENTS.md ├── AnalogOutput │ ├── AnalogOutput.ino │ └── compat.h ├── Animartrix │ └── Animartrix.ino ├── AnimartrixRing │ └── AnimartrixRing.ino ├── Apa102 │ └── Apa102.ino ├── Apa102HD │ └── Apa102HD.ino ├── Apa102HDOverride │ └── Apa102HDOverride.ino ├── Async │ ├── Async.h │ └── Async.ino ├── Audio │ ├── Audio.ino │ ├── advanced │ │ ├── README.md │ │ └── advanced.h │ └── simple │ │ ├── README.md │ │ ├── fx_audio.h │ │ └── simple.h ├── AudioInput │ ├── AudioInput.h │ └── AudioInput.ino ├── BeatDetection │ └── BeatDetection.ino ├── Blink │ └── Blink.ino ├── BlinkParallel │ └── BlinkParallel.ino ├── Blur │ └── Blur.ino ├── Blur2d │ └── Blur2d.ino ├── Chromancer │ ├── Chromancer.ino │ ├── detail.h │ ├── gary_woos_wled_port │ │ ├── gary_woos_wled_ledmap.h │ │ ├── presets.json │ │ └── presets.min.json │ ├── gen.py │ ├── mapping.h │ ├── output.json │ ├── ripple.h │ └── screenmap.json.h ├── Codec │ ├── Codec.ino │ ├── README.md │ ├── codec_processor.cpp │ ├── codec_processor.h │ ├── inlined_data.cpp │ └── inlined_data.h ├── ColorBoost │ ├── ColorBoost.h │ └── ColorBoost.ino ├── ColorPalette │ └── ColorPalette.ino ├── ColorTemperature │ └── ColorTemperature.ino ├── CompileTest │ ├── apollo3_test.h │ ├── arm_test.h │ ├── avr_test.h │ └── wasm_test.h ├── Corkscrew │ ├── Corkscrew.h │ └── Corkscrew.ino ├── Cylon │ └── Cylon.ino ├── DemoReel100 │ └── DemoReel100.ino ├── Downscale │ ├── Downscale.h │ ├── Downscale.ino │ └── src │ │ ├── wave.cpp │ │ ├── wave.h │ │ ├── xypaths.cpp │ │ └── xypaths.h ├── EaseInOut │ ├── EaseInOut.h │ └── EaseInOut.ino ├── Esp8266Uart │ ├── Esp8266Uart.ino │ └── README.md ├── FestivalStick │ ├── FestivalStick.ino │ ├── curr.h │ └── old.h ├── Fire2012 │ └── Fire2012.ino ├── Fire2012WithPalette │ └── Fire2012WithPalette.ino ├── Fire2023 │ ├── Fire2023.h │ └── Fire2023.ino ├── FireCylinder │ ├── FireCylinder.h │ └── FireCylinder.ino ├── FireMatrix │ ├── FireMatrix.h │ └── FireMatrix.ino ├── FirstLight │ └── FirstLight.ino ├── Fx │ ├── FxCylon │ │ └── FxCylon.ino │ ├── FxDemoReel100 │ │ ├── FxDemoReel100.ino │ │ └── defs.h │ ├── FxEngine │ │ └── FxEngine.ino │ ├── FxFire2012 │ │ └── FxFire2012.ino │ ├── FxGfx2Video │ │ └── FxGfx2Video.ino │ ├── FxNoisePlusPalette │ │ └── FxNoisePlusPalette.ino │ ├── FxNoiseRing │ │ ├── FxNoiseRing.ino │ │ └── simple_timer.h │ ├── FxPacifica │ │ ├── FxPacifica.ino │ │ └── defs.h │ ├── FxPride2015 │ │ └── FxPride2015.ino │ ├── FxSdCard │ │ ├── FxSdCard.ino │ │ └── data │ │ │ ├── color_line_bubbles.rgb │ │ │ ├── readme.txt │ │ │ ├── screenmap.json │ │ │ └── video.rgb │ ├── FxTwinkleFox │ │ └── FxTwinkleFox.ino │ ├── FxWater │ │ ├── FxWater.h │ │ └── FxWater.ino │ └── FxWave2d │ │ ├── FxWave2d.ino │ │ ├── wavefx.cpp │ │ └── wavefx.h ├── HD107 │ └── HD107.ino ├── HSVTest │ ├── HSVTest.h │ └── HSVTest.ino ├── Json │ ├── Json.ino │ └── JsonSketch.h ├── LuminescentGrand │ ├── LuminescentGrand.ino │ ├── arduino │ │ ├── LedRopeTCL.cpp │ │ ├── LedRopeTCL.h │ │ ├── MIDI.cpp │ │ ├── MIDI.h │ │ ├── MIDI.hpp │ │ ├── buttons.h │ │ ├── midi_Defs.h │ │ ├── midi_Message.h │ │ ├── midi_Namespace.h │ │ ├── midi_Platform.h │ │ ├── midi_Settings.h │ │ ├── serialMIDI.h │ │ ├── ui_state.cpp │ │ └── ui_state.h │ └── shared │ │ ├── ApproximatingFunction.h │ │ ├── Keyboard.cpp │ │ ├── Keyboard.h │ │ ├── Painter.cpp │ │ ├── Painter.h │ │ ├── color.cpp │ │ ├── color.h │ │ ├── color_mapper.cpp │ │ ├── color_mapper.h │ │ ├── defs.h │ │ ├── dprint.cpp │ │ ├── dprint.h │ │ ├── framebuffer.cpp │ │ ├── framebuffer.h │ │ ├── led_layout_array.cpp │ │ ├── led_layout_array.h │ │ ├── led_rope_interface.h │ │ ├── settings.h │ │ ├── util.cpp │ │ └── util.h ├── Luminova │ ├── Luminova.h │ └── Luminova.ino ├── Multiple │ ├── ArrayOfLedArrays │ │ └── ArrayOfLedArrays.ino │ ├── MirroringSample │ │ └── MirroringSample.ino │ ├── MultiArrays │ │ └── MultiArrays.ino │ ├── MultipleStripsInOneArray │ │ └── MultipleStripsInOneArray.ino │ └── ParallelOutputDemo │ │ ├── ParallelOutputDemo.h │ │ └── ParallelOutputDemo.ino ├── NetTest │ ├── NetTest.ino │ └── NetTestReal.h ├── Noise │ └── Noise.ino ├── NoisePlayground │ ├── NoisePlayground.h │ └── NoisePlayground.ino ├── NoisePlusPalette │ ├── NoisePlusPalette.h │ └── NoisePlusPalette.ino ├── Overclock │ └── Overclock.ino ├── Pacifica │ └── Pacifica.ino ├── PinMode │ └── PinMode.ino ├── Pintest │ ├── Pintest.h │ └── Pintest.ino ├── Ports │ └── PJRCSpectrumAnalyzer │ │ ├── PJRCSpectrumAnalyzer.h │ │ └── PJRCSpectrumAnalyzer.ino ├── Pride2015 │ └── Pride2015.ino ├── README.md ├── RGBCalibrate │ └── RGBCalibrate.ino ├── RGBSetDemo │ └── RGBSetDemo.ino ├── RGBW │ └── RGBW.ino ├── RGBWEmulated │ └── RGBWEmulated.ino ├── SmartMatrix │ ├── SmartMatrix.ino │ └── SmartMatrixSketch.h ├── Sound2Midi │ └── Sound2Midi.ino ├── SpecialDrivers │ ├── Adafruit │ │ └── AdafruitBridge │ │ │ └── AdafruitBridge.ino │ ├── ESP │ │ ├── I2S │ │ │ ├── Esp32S3I2SDemo │ │ │ │ ├── Esp32S3I2SDemo.h │ │ │ │ ├── Esp32S3I2SDemo.ino │ │ │ │ └── Esp32S3LCD50.h │ │ │ └── EspI2SDemo │ │ │ │ ├── EspI2SDemo.h │ │ │ │ └── EspI2SDemo.ino │ │ ├── LCD_I80 │ │ │ ├── LCD_I80.h │ │ │ └── LCD_I80.ino │ │ ├── LCD_RGB │ │ │ ├── LCD_RGB.h │ │ │ └── LCD_RGB.ino │ │ ├── ParallelSPI │ │ │ └── Esp32C3_SPI_ISR │ │ │ │ └── Esp32C3_SPI_ISR.ino │ │ ├── Parlio │ │ │ └── Esp32P4Parlio │ │ │ │ ├── Esp32P4Parlio.h │ │ │ │ └── Esp32P4Parlio.ino │ │ └── QuadSPI │ │ │ ├── Basic │ │ │ └── QuadSPI_Basic.ino │ │ │ └── MultiChipset │ │ │ └── QuadSPI_MultiChipset.ino │ └── Teensy │ │ ├── ObjectFLED │ │ └── TeensyMassiveParallel │ │ │ ├── TeensyMassiveParallel.h │ │ │ └── TeensyMassiveParallel.ino │ │ └── OctoWS2811 │ │ ├── OctoWS2811 │ │ ├── OctoWS2811.ino │ │ └── OctoWS2811_impl.h │ │ └── OctoWS2811Demo │ │ ├── OctoWS2811Demo.h │ │ └── OctoWS2811Demo.ino ├── TwinkleFox │ └── TwinkleFox.ino ├── UITest │ └── UITest.ino ├── WS2816 │ └── WS2816.ino ├── WasmScreenCoords │ └── WasmScreenCoords.ino ├── Wave │ ├── Wave.h │ └── Wave.ino ├── Wave2d │ ├── Wave2d.h │ └── Wave2d.ino ├── XYMatrix │ └── XYMatrix.ino ├── XYPath │ ├── XYPath.ino │ ├── complex.h │ ├── direct.h │ ├── simple.h │ └── src │ │ ├── wave.cpp │ │ ├── wave.h │ │ ├── xypaths.cpp │ │ └── xypaths.h ├── meson.build └── wasm │ ├── wasm.ino │ └── wasm_impl.h ├── extras ├── AppleII.s65 ├── FastLED6502.s65 ├── RainbowDemo.bin.zip └── RainbowDemo.s65 ├── fastled4.md ├── generate_compile_commands.sh ├── inspect ├── install ├── keywords.txt ├── library.json ├── library.properties ├── lint ├── mcp_server.py ├── meson.build ├── platformio.ini ├── pyproject.toml ├── release_notes.md ├── run ├── scripts ├── all_source_build.py.disabled ├── disable_all_source_build.py.disabled └── enhance-js-typing.py ├── src ├── CMakeLists.txt ├── FastLED.cpp ├── FastLED.h ├── README.md ├── _readme ├── bitswap.cpp ├── bitswap.h ├── chipsets.h ├── chsv.h ├── cled_controller.cpp ├── cled_controller.h ├── color.h ├── colorpalettes.cpp ├── colorpalettes.h ├── colorutils.h ├── controller.h ├── cpixel_ledcontroller.h ├── cpp_compat.h ├── crgb.cpp ├── crgb.h ├── crgb.hpp ├── dither_mode.h ├── dmx.h ├── eorder.h ├── fastled_config.h ├── fastled_delay.cpp ├── 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 ├── fl │ ├── README.md │ ├── _readme │ ├── algorithm.h │ ├── align.h │ ├── allocator.cpp │ ├── allocator.h │ ├── array.h │ ├── assert.h │ ├── async.cpp │ ├── async.h │ ├── atomic.h │ ├── audio.cpp │ ├── audio.h │ ├── audio_input.cpp │ ├── audio_input.h │ ├── audio_reactive.cpp │ ├── audio_reactive.h │ ├── avr_disallowed.h │ ├── bit_cast.h │ ├── bitset.cpp │ ├── bitset.h │ ├── bitset_dynamic.h │ ├── blur.cpp │ ├── blur.h │ ├── bytestream.h │ ├── bytestreammemory.cpp │ ├── bytestreammemory.h │ ├── chipsets │ │ └── ucs7604.h │ ├── circular_buffer.h │ ├── clamp.h │ ├── clear.h │ ├── codec │ │ ├── common.h │ │ ├── gif.cpp │ │ ├── gif.h │ │ ├── idecoder.h │ │ ├── jpeg.cpp │ │ ├── jpeg.h │ │ ├── mp3.cpp │ │ ├── mp3.h │ │ ├── mpeg1.cpp │ │ ├── mpeg1.h │ │ ├── pixel.cpp │ │ └── pixel.h │ ├── colorutils.cpp │ ├── colorutils.h │ ├── colorutils_misc.h │ ├── comparators.h │ ├── compiler_control.h │ ├── convert.h │ ├── corkscrew.cpp │ ├── corkscrew.h │ ├── crgb_hsv16.cpp │ ├── cstddef.h │ ├── dbg.h │ ├── deprecated.h │ ├── deque.h │ ├── dll.h │ ├── downscale.cpp │ ├── downscale.h │ ├── draw_mode.h │ ├── draw_visitor.h │ ├── ease.cpp │ ├── ease.h │ ├── engine_events.cpp │ ├── engine_events.h │ ├── eorder.h │ ├── export.h │ ├── fetch.cpp │ ├── fetch.h │ ├── fft.cpp │ ├── fft.h │ ├── fft_impl.cpp │ ├── fft_impl.h │ ├── file_system.cpp │ ├── file_system.h │ ├── fill.cpp │ ├── fill.h │ ├── five_bit_hd_gamma.h │ ├── force_inline.h │ ├── function.h │ ├── function_list.h │ ├── functional.h │ ├── gamma.cpp │ ├── gamma.h │ ├── geometry.h │ ├── gradient.cpp │ ├── gradient.h │ ├── grid.h │ ├── has_include.h │ ├── hash.h │ ├── hash_map.h │ ├── hash_map_lru.h │ ├── hash_set.h │ ├── hsv.h │ ├── hsv16.cpp │ ├── hsv16.h │ ├── id_tracker.cpp │ ├── id_tracker.h │ ├── initializer_list.h │ ├── inplacenew.h │ ├── insert_result.h │ ├── int.h │ ├── io.cpp │ ├── io.h │ ├── iostream.h │ ├── istream.cpp │ ├── istream.h │ ├── json.cpp │ ├── json.h │ ├── leds.cpp │ ├── leds.h │ ├── line_simplification.cpp │ ├── line_simplification.h │ ├── lut.h │ ├── map.h │ ├── map_range.h │ ├── math.cpp │ ├── math.h │ ├── math_macros.h │ ├── memfill.h │ ├── memory.h │ ├── move.h │ ├── mutex.h │ ├── namespace.h │ ├── noise_woryley.cpp │ ├── noise_woryley.h │ ├── optional.h │ ├── ostream.cpp │ ├── ostream.h │ ├── pair.h │ ├── point.h │ ├── priority_queue.h │ ├── promise.h │ ├── promise_result.h │ ├── ptr.cpp │ ├── ptr.h │ ├── ptr_impl.h │ ├── queue.h │ ├── random.cpp │ ├── random.h │ ├── range_access.h │ ├── raster.h │ ├── raster_sparse.cpp │ ├── raster_sparse.h │ ├── rbtree.h │ ├── rectangular_draw_buffer.cpp │ ├── rectangular_draw_buffer.h │ ├── referent.cpp │ ├── referent.h │ ├── register.h │ ├── rgbw.cpp │ ├── rgbw.h │ ├── scoped_array.h │ ├── scoped_ptr.h │ ├── screenmap.cpp │ ├── screenmap.h │ ├── set.h │ ├── shared_ptr.h │ ├── sin32.cpp │ ├── sin32.h │ ├── singleton.h │ ├── sketch_macros.h │ ├── slice.h │ ├── span.h │ ├── splat.cpp │ ├── splat.h │ ├── sstream.h │ ├── stdint.h │ ├── stdio.h │ ├── str.cpp │ ├── str.h │ ├── str_ui.cpp │ ├── string.h │ ├── strstream.cpp │ ├── strstream.h │ ├── stub_main.cpp │ ├── supersample.h │ ├── task.cpp │ ├── task.h │ ├── template_magic.h │ ├── thread.h │ ├── thread_local.h │ ├── tile2x2.cpp │ ├── tile2x2.h │ ├── time.cpp │ ├── time.h │ ├── time_alpha.cpp │ ├── time_alpha.h │ ├── trace.h │ ├── transform.cpp │ ├── transform.h │ ├── traverse_grid.h │ ├── tuple.h │ ├── type_traits.cpp │ ├── type_traits.h │ ├── types.h │ ├── ui.cpp │ ├── ui.h │ ├── ui_impl.h │ ├── unique_ptr.h │ ├── unordered_set.h │ ├── unused.h │ ├── upscale.cpp │ ├── upscale.h │ ├── utility.h │ ├── variant.h │ ├── vector.h │ ├── virtual_if_not_avr.h │ ├── warn.h │ ├── wave_simulation.cpp │ ├── wave_simulation.h │ ├── wave_simulation_real.cpp │ ├── wave_simulation_real.h │ ├── weak_ptr.h │ ├── xmap.cpp │ ├── xmap.h │ ├── xymap.cpp │ ├── xymap.h │ ├── xypath.cpp │ ├── xypath.h │ ├── xypath_impls.cpp │ ├── xypath_impls.h │ ├── xypath_renderer.cpp │ └── xypath_renderer.h ├── fonts │ ├── _readme │ ├── console_font_4x6.h │ ├── console_font_5x12.h │ ├── console_font_5x8.h │ ├── console_font_6x8.h │ └── console_font_7x9.h ├── fx │ ├── 1d │ │ ├── README.md │ │ ├── cylon.h │ │ ├── demoreel100.h │ │ ├── fire2012.h │ │ ├── noisewave.h │ │ ├── pacifica.h │ │ ├── pride2015.h │ │ └── twinklefox.h │ ├── 2d │ │ ├── README.md │ │ ├── animartrix.hpp │ │ ├── animartrix_detail.hpp │ │ ├── blend.cpp │ │ ├── blend.h │ │ ├── luminova.cpp │ │ ├── luminova.h │ │ ├── noisepalette.cpp │ │ ├── noisepalette.h │ │ ├── redsquare.h │ │ ├── scale_up.cpp │ │ ├── scale_up.h │ │ ├── wave.cpp │ │ └── wave.h │ ├── README.md │ ├── audio │ │ ├── README.md │ │ ├── beat_detector.cpp │ │ ├── beat_detector.h │ │ ├── sound_to_midi.cpp │ │ └── sound_to_midi.h │ ├── detail │ │ ├── README.md │ │ ├── draw_context.h │ │ ├── fx_compositor.h │ │ ├── fx_layer.cpp │ │ ├── fx_layer.h │ │ └── transition.h │ ├── frame.cpp │ ├── frame.h │ ├── fx.h │ ├── fx1d.h │ ├── fx2d.h │ ├── fx2d_to_1d.cpp │ ├── fx2d_to_1d.h │ ├── fx_engine.cpp │ ├── fx_engine.h │ ├── readme │ ├── time.cpp │ ├── time.h │ ├── video.cpp │ ├── video.h │ └── video │ │ ├── README.md │ │ ├── frame_interpolator.cpp │ │ ├── frame_interpolator.h │ │ ├── frame_tracker.cpp │ │ ├── frame_tracker.h │ │ ├── pixel_stream.cpp │ │ ├── pixel_stream.h │ │ ├── video_impl.cpp │ │ └── video_impl.h ├── hsv2rgb.cpp ├── hsv2rgb.h ├── led_sysdefs.h ├── lib8tion.cpp ├── lib8tion.h ├── lib8tion │ ├── config.h │ ├── intmap.h │ ├── lib8static.h │ ├── math8.h │ ├── memmove.h │ ├── qfx.h │ ├── random8.h │ ├── scale8.h │ ├── trig8.h │ └── types.h ├── noise.cpp ├── noise.h ├── noisegen.h ├── pixel_controller.h ├── pixel_iterator.h ├── pixelset.h ├── pixeltypes.h ├── platforms.cpp ├── platforms.h ├── platforms │ ├── README_SPI_ADVANCED.md │ ├── README_SPI_DUAL.md │ ├── README_SPI_QUAD.md │ ├── adafruit │ │ ├── README.md │ │ ├── clockless.cpp │ │ ├── clockless.h │ │ ├── clockless_fake.hpp │ │ ├── clockless_real.hpp │ │ └── driver.h │ ├── apollo3 │ │ ├── README.md │ │ ├── clockless_apollo3.h │ │ ├── compile_test.hpp │ │ ├── fastled_apollo3.h │ │ ├── fastpin_apollo3.h │ │ ├── fastspi_apollo3.h │ │ └── led_sysdefs_apollo3.h │ ├── arduino │ │ └── audio_input.hpp │ ├── arm │ │ ├── README.md │ │ ├── arm_compile.hpp │ │ ├── common │ │ │ ├── README.md │ │ │ └── m0clockless.h │ │ ├── compile_test.hpp │ │ ├── d21 │ │ │ ├── README.md │ │ │ ├── clockless_arm_d21.h │ │ │ ├── fastled_arm_d21.h │ │ │ ├── fastpin_arm_d21.h │ │ │ └── led_sysdefs_arm_d21.h │ │ ├── d51 │ │ │ ├── README.md │ │ │ ├── README.txt │ │ │ ├── clockless_arm_d51.h │ │ │ ├── fastled_arm_d51.h │ │ │ ├── fastpin_arm_d51.h │ │ │ └── led_sysdefs_arm_d51.h │ │ ├── giga │ │ │ ├── README.md │ │ │ ├── armpin.h │ │ │ ├── clockless_arm_giga.h │ │ │ ├── fastled_arm_giga.h │ │ │ ├── fastpin_arm_giga.h │ │ │ └── led_sysdef_arm_giga.h │ │ ├── int.h │ │ ├── is_arm.h │ │ ├── k20 │ │ │ ├── README.md │ │ │ ├── clockless_arm_k20.h │ │ │ ├── clockless_block_arm_k20.h │ │ │ ├── clockless_objectfled.cpp │ │ │ ├── clockless_objectfled.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 │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── clockless_arm_kl26.h │ │ │ ├── fastled_arm_kl26.h │ │ │ ├── fastpin_arm_kl26.h │ │ │ ├── fastspi_arm_kl26.h │ │ │ └── led_sysdefs_arm_kl26.h │ │ ├── mgm240 │ │ │ ├── clockless_arm_mgm240.h │ │ │ ├── clockless_ezws2812_39mhz.h │ │ │ ├── clockless_ezws2812_78mhz.h │ │ │ ├── clockless_ezws2812_gpio.h │ │ │ ├── clockless_ezws2812_spi.h │ │ │ ├── fastled_arm_mgm240.h │ │ │ ├── fastpin_arm_mgm240.cpp │ │ │ ├── fastpin_arm_mgm240.h │ │ │ └── led_sysdefs_arm_mgm240.h │ │ ├── mk20dx │ │ │ └── int.h │ │ ├── mxrt1062 │ │ │ ├── README.md │ │ │ ├── block_clockless_arm_mxrt1062.h │ │ │ ├── clockless_arm_mxrt1062.h │ │ │ ├── fastled_arm_mxrt1062.h │ │ │ ├── fastpin_arm_mxrt1062.h │ │ │ ├── fastspi_arm_mxrt1062.h │ │ │ ├── int.h │ │ │ ├── led_sysdefs_arm_mxrt1062.h │ │ │ └── octows2811_controller.h │ │ ├── nrf51 │ │ │ ├── README.md │ │ │ ├── clockless_arm_nrf51.h │ │ │ ├── fastled_arm_nrf51.h │ │ │ ├── fastpin_arm_nrf51.h │ │ │ ├── fastspi_arm_nrf51.h │ │ │ └── led_sysdefs_arm_nrf51.h │ │ ├── nrf52 │ │ │ ├── README.md │ │ │ ├── arbiter_nrf52.h │ │ │ ├── clockless_arm_nrf52.h │ │ │ ├── fastled_arm_nrf52.h │ │ │ ├── fastpin_arm_nrf52.h │ │ │ ├── fastpin_arm_nrf52_variants.h │ │ │ ├── fastspi_arm_nrf52.h │ │ │ └── led_sysdefs_arm_nrf52.h │ │ ├── renesas │ │ │ ├── README.md │ │ │ ├── clockless_arm_renesas.h │ │ │ ├── fastled_arm_renesas.h │ │ │ ├── fastpin_arm_renesas.h │ │ │ └── led_sysdef_arm_renesas.h │ │ ├── rp2040 │ │ │ ├── README.md │ │ │ ├── clockless_arm_rp2040.h │ │ │ ├── fastled_arm_rp2040.h │ │ │ ├── fastpin_arm_rp2040.h │ │ │ ├── led_sysdefs_arm_rp2040.h │ │ │ ├── pio_asm.h │ │ │ └── pio_gen.h │ │ ├── sam │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── armpin.h │ │ │ ├── clockless_arm_stm32.h │ │ │ ├── cm3_regs.h │ │ │ ├── fastled_arm_stm32.h │ │ │ ├── fastpin_arm_stm32.h │ │ │ ├── fastpin_arm_stm_legacy.h │ │ │ ├── fastpin_arm_stm_new.h │ │ │ └── led_sysdefs_arm_stm32.h │ ├── assert_defs.h │ ├── atomic.h │ ├── audio.h │ ├── audio_input_null.hpp │ ├── avr │ │ ├── README.md │ │ ├── avr_compile.hpp │ │ ├── avr_millis_timer0_impl_source.hpp │ │ ├── avr_millis_timer_null_counter.hpp │ │ ├── avr_millis_timer_source.cpp │ │ ├── avr_pin.h │ │ ├── clockless_trinket.h │ │ ├── compile_test.hpp │ │ ├── fastled_avr.h │ │ ├── fastpin_avr.h │ │ ├── fastpin_avr_atmega4809.h │ │ ├── fastpin_avr_legacy.h │ │ ├── fastpin_avr_nano_every.h │ │ ├── fastspi_avr.h │ │ ├── int.h │ │ ├── io_avr.h │ │ ├── io_avr_lowlevel.h │ │ └── led_sysdefs_avr.h │ ├── chipsets_specialized_ws2812.h │ ├── compile_test.cpp │ ├── esp │ │ ├── 32 │ │ │ ├── ESP32-P4_PARLIO_DESIGN.md │ │ │ ├── README.md │ │ │ ├── audio │ │ │ │ ├── audio.cpp │ │ │ │ ├── audio_impl.hpp │ │ │ │ ├── devices │ │ │ │ │ ├── i2s.hpp │ │ │ │ │ ├── idf4_i2s_context.hpp │ │ │ │ │ └── idf5_i2s_context.hpp │ │ │ │ ├── sound_util.cpp │ │ │ │ └── sound_util.h │ │ │ ├── clock_cycles.h │ │ │ ├── clockless_block_esp32.h │ │ │ ├── clockless_i2s_esp32.h │ │ │ ├── clockless_i2s_esp32s3.cpp │ │ │ ├── clockless_i2s_esp32s3.h │ │ │ ├── clockless_lcd_esp32s3_impl.hpp │ │ │ ├── clockless_lcd_i80_esp32.cpp │ │ │ ├── clockless_lcd_i80_esp32.h │ │ │ ├── clockless_lcd_rgb_esp32.cpp │ │ │ ├── clockless_lcd_rgb_esp32.h │ │ │ ├── clockless_parlio_esp32p4.cpp │ │ │ ├── clockless_parlio_esp32p4.h │ │ │ ├── clockless_rmt_esp32.h │ │ │ ├── clockless_spi_esp32.h │ │ │ ├── esp_log_control.h │ │ │ ├── fastled_esp32.h │ │ │ ├── fastpin_esp32.h │ │ │ ├── fastspi_esp32.h │ │ │ ├── i2s │ │ │ │ ├── i2s_esp32dev.cpp │ │ │ │ └── i2s_esp32dev.h │ │ │ ├── interrupts │ │ │ │ ├── INVESTIGATE.md │ │ │ │ ├── riscv.hpp │ │ │ │ ├── xtensa_lx6.hpp │ │ │ │ └── xtensa_lx7.hpp │ │ │ ├── lcd │ │ │ │ ├── implementation_notes.md │ │ │ │ ├── lcd_driver_base.h │ │ │ │ ├── lcd_driver_common.h │ │ │ │ ├── lcd_driver_i80.h │ │ │ │ ├── lcd_driver_i80_impl.h │ │ │ │ ├── lcd_driver_rgb.h │ │ │ │ └── lcd_driver_rgb_impl.h │ │ │ ├── led_sysdefs_esp32.h │ │ │ ├── parallel_spi │ │ │ │ ├── README.md │ │ │ │ ├── esp32c3_isr_platform.cpp │ │ │ │ ├── fastled_parallel_spi_esp32c3.hpp │ │ │ │ ├── fl_parallel_spi_isr_rv.cpp │ │ │ │ └── fl_parallel_spi_isr_rv.h │ │ │ ├── parlio │ │ │ │ ├── parlio_driver.h │ │ │ │ └── parlio_driver_impl.h │ │ │ ├── rmt_4 │ │ │ │ ├── idf4_clockless_rmt_esp32.h │ │ │ │ ├── idf4_rmt.cpp │ │ │ │ ├── idf4_rmt.h │ │ │ │ ├── idf4_rmt_impl.cpp │ │ │ │ └── idf4_rmt_impl.h │ │ │ ├── rmt_5 │ │ │ │ ├── README.md │ │ │ │ ├── idf5_clockless_rmt_esp32.h │ │ │ │ ├── idf5_clockless_rmt_esp32_v2.h │ │ │ │ ├── idf5_rmt.cpp │ │ │ │ ├── idf5_rmt.h │ │ │ │ ├── rmt5_controller_lowlevel.cpp │ │ │ │ ├── rmt5_controller_lowlevel.h │ │ │ │ ├── rmt5_worker.cpp │ │ │ │ ├── rmt5_worker.h │ │ │ │ ├── rmt5_worker_base.h │ │ │ │ ├── rmt5_worker_oneshot.cpp │ │ │ │ ├── rmt5_worker_oneshot.h │ │ │ │ ├── rmt5_worker_pool.cpp │ │ │ │ ├── rmt5_worker_pool.h │ │ │ │ ├── strip_rmt.cpp │ │ │ │ └── strip_rmt.h │ │ │ ├── spi_device_proxy.h │ │ │ ├── spi_dual_esp32.cpp │ │ │ ├── spi_quad_esp32.cpp │ │ │ ├── spi_single_esp32.cpp │ │ │ └── spi_ws2812 │ │ │ │ ├── strip_spi.cpp │ │ │ │ └── strip_spi.h │ │ ├── 8266 │ │ │ ├── README.md │ │ │ ├── clockless_block_esp8266.h │ │ │ ├── clockless_esp8266.h │ │ │ ├── fastled_esp8266.h │ │ │ ├── fastled_esp8266_uart.cpp │ │ │ ├── fastled_esp8266_uart.h │ │ │ ├── fastpin_esp8266.h │ │ │ ├── fastspi_esp8266.h │ │ │ ├── led_sysdefs_esp8266.h │ │ │ └── progmem_esp8266.h │ │ ├── README.md │ │ ├── compile_test.hpp │ │ ├── esp_assert.h │ │ ├── esp_compile.hpp │ │ ├── esp_version.h │ │ ├── int.h │ │ ├── int_8266.h │ │ ├── io_esp.h │ │ └── print_esp.h │ ├── fastspi_ardunio_core.h │ ├── fs_sdcard_arduino.hpp │ ├── int.h │ ├── io_arduino.h │ ├── io_native.h │ ├── io_null.h │ ├── io_teensy.h │ ├── io_teensy_lc.h │ ├── neopixelbus │ │ ├── README.md │ │ └── clockless.h │ ├── null_progmem.h │ ├── posix │ │ ├── README.md │ │ ├── socket_posix.cpp │ │ └── socket_posix.h │ ├── print_arduino.h │ ├── print_native.h │ ├── quad_spi_platform.h │ ├── readme.md │ ├── shared │ │ ├── README.md │ │ ├── active_strip_data │ │ │ ├── active_strip_data.cpp │ │ │ └── active_strip_data.h │ │ ├── atomic.h │ │ ├── clockless_timing.h │ │ ├── int.h │ │ ├── spi_bus_manager.h │ │ ├── spi_dual.cpp │ │ ├── spi_dual.h │ │ ├── spi_quad.cpp │ │ ├── spi_quad.h │ │ ├── spi_single.cpp │ │ ├── spi_single.h │ │ ├── spi_transposer_dual.cpp │ │ ├── spi_transposer_dual.h │ │ ├── spi_transposer_quad.cpp │ │ ├── spi_transposer_quad.h │ │ └── ui │ │ │ └── json │ │ │ ├── audio.cpp │ │ │ ├── audio.h │ │ │ ├── audio_buffer.h │ │ │ ├── audio_internal.cpp │ │ │ ├── audio_internal.h │ │ │ ├── button.cpp │ │ │ ├── button.h │ │ │ ├── checkbox.cpp │ │ │ ├── checkbox.h │ │ │ ├── description.cpp │ │ │ ├── description.h │ │ │ ├── dropdown.cpp │ │ │ ├── dropdown.h │ │ │ ├── help.cpp │ │ │ ├── help.h │ │ │ ├── json_console.cpp │ │ │ ├── json_console.h │ │ │ ├── number_field.cpp │ │ │ ├── number_field.h │ │ │ ├── readme.md │ │ │ ├── slider.cpp │ │ │ ├── slider.h │ │ │ ├── title.cpp │ │ │ ├── title.h │ │ │ ├── ui.cpp │ │ │ ├── ui.h │ │ │ ├── ui_internal.cpp │ │ │ ├── ui_internal.h │ │ │ ├── ui_manager.cpp │ │ │ └── ui_manager.h │ ├── sketch_fake.hpp │ ├── socket_platform.h │ ├── stub │ │ ├── Arduino.cpp │ │ ├── Arduino.h │ │ ├── README.md │ │ ├── clockless_stub.h │ │ ├── clockless_stub_generic.h │ │ ├── compile_test.hpp │ │ ├── fastled_stub.h │ │ ├── fastspi_stub.h │ │ ├── fastspi_stub_generic.h │ │ ├── fs_stub.cpp │ │ ├── fs_stub.hpp │ │ ├── generic │ │ │ └── led_sysdefs_generic.hpp │ │ ├── led_sysdefs_stub.cpp │ │ ├── led_sysdefs_stub.h │ │ ├── led_sysdefs_stub_generic.h │ │ ├── quad_spi_driver.h │ │ ├── spi_dual_stub.cpp │ │ ├── spi_dual_stub.h │ │ ├── spi_quad_stub.cpp │ │ ├── spi_quad_stub.h │ │ ├── spi_single_stub.cpp │ │ ├── spi_single_stub.h │ │ ├── time_stub.cpp │ │ └── time_stub.h │ ├── stub_main.hpp │ ├── ui_defs.h │ ├── wasm │ │ ├── README.md │ │ ├── active_strip_data.cpp │ │ ├── active_strip_data.h │ │ ├── clockless.h │ │ ├── compiler │ │ │ ├── Arduino.h │ │ │ ├── build_flags.toml │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── jsconfig.json │ │ │ ├── modules │ │ │ │ ├── audio_manager.js │ │ │ │ ├── audio_worklet_processor.js │ │ │ │ ├── column_validator.js │ │ │ │ ├── fastled_async_controller.js │ │ │ │ ├── fastled_background_worker.js │ │ │ │ ├── fastled_callbacks.js │ │ │ │ ├── fastled_debug_logger.js │ │ │ │ ├── fastled_events.js │ │ │ │ ├── fastled_worker_manager.js │ │ │ │ ├── graphics_manager.js │ │ │ │ ├── graphics_manager_base.js │ │ │ │ ├── graphics_manager_threejs.js │ │ │ │ ├── graphics_utils.js │ │ │ │ ├── json_inspector.css │ │ │ │ ├── json_inspector.js │ │ │ │ ├── layout_state_manager.js │ │ │ │ ├── resize_coordinator.js │ │ │ │ ├── ui_layout_placement_manager.js │ │ │ │ ├── ui_manager.js │ │ │ │ ├── ui_playback.js │ │ │ │ ├── ui_recorder.js │ │ │ │ ├── ui_recorder_test.js │ │ │ │ └── video_recorder.js │ │ │ └── types.d.ts │ │ ├── engine_listener.cpp │ │ ├── engine_listener.h │ │ ├── entry_point.cpp │ │ ├── fastspi_wasm.cpp │ │ ├── fastspi_wasm.h │ │ ├── fs_wasm.cpp │ │ ├── fs_wasm.h │ │ ├── int.h │ │ ├── io_wasm.h │ │ ├── js.cpp │ │ ├── js.h │ │ ├── js_assert.h │ │ ├── js_bindings.cpp │ │ ├── js_bindings.h │ │ ├── js_fetch.cpp │ │ ├── js_fetch.h │ │ ├── js_fetch_readme.md │ │ ├── js_progmem.h │ │ ├── led_sysdefs_wasm.h │ │ ├── print_wasm.h │ │ ├── readme │ │ ├── socket_wasm.cpp.disabled │ │ ├── socket_wasm.h │ │ ├── strip_id_map.h │ │ ├── timer.cpp │ │ ├── types.d.ts │ │ ├── ui.cpp │ │ ├── ui.h │ │ └── wasm_compile.hpp │ └── win │ │ ├── README.md │ │ ├── socket_win.cpp │ │ └── socket_win.h ├── power_mgt.cpp ├── power_mgt.h ├── rgbw.h ├── sensors │ ├── button.cpp │ ├── button.h │ ├── digital_pin.cpp │ ├── digital_pin.h │ ├── pir.cpp │ └── pir.h ├── simplex.cpp ├── third_party │ ├── TJpg_Decoder │ │ ├── README.md │ │ ├── driver.cpp │ │ ├── driver.h │ │ └── src │ │ │ ├── TJpg_Decoder.cpp │ │ │ ├── TJpg_Decoder.h │ │ │ ├── User_Config.h │ │ │ ├── tjpgd.cpp │ │ │ ├── tjpgd.h │ │ │ └── tjpgdcnf.h │ ├── arduinojson │ │ ├── json.h │ │ └── json.hpp │ ├── cq_kernel │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _kiss_fft_guts.h │ │ ├── cq_kernel.cpp │ │ ├── cq_kernel.h │ │ ├── example.c.disabled │ │ ├── example_out_chart.png │ │ ├── kiss_fft.cpp │ │ ├── kiss_fft.h │ │ ├── kiss_fftr.cpp │ │ └── kiss_fftr.h │ ├── espressif │ │ └── led_strip │ │ │ ├── readme │ │ │ └── src │ │ │ ├── enabled.h │ │ │ ├── led_strip.h │ │ │ ├── led_strip_api.c │ │ │ ├── led_strip_interface.h │ │ │ ├── led_strip_rmt.h │ │ │ ├── led_strip_rmt_dev.c │ │ │ ├── led_strip_rmt_encoder.c │ │ │ ├── led_strip_rmt_encoder.h │ │ │ ├── led_strip_spi.h │ │ │ ├── led_strip_spi_dev.c │ │ │ └── led_strip_types.h │ ├── ezws2812 │ │ ├── README.md │ │ └── ezWS2812.h │ ├── libhelix_mp3 │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── RCSL.txt │ │ ├── README.md │ │ ├── README_ARM_ASSEMBLY.md │ │ ├── RPSL.txt │ │ ├── libhelix_mp3_unity.cpp │ │ ├── mp3dec.hpp │ │ ├── mp3tabs.hpp │ │ ├── pub │ │ │ ├── mp3common.h │ │ │ ├── mp3dec.h │ │ │ ├── mpadecobjfixpt.h │ │ │ └── statname.h │ │ └── real │ │ │ ├── arm │ │ │ └── asmpoly_gcc.S │ │ │ ├── assembly.h │ │ │ ├── bitstream.hpp │ │ │ ├── buffers.hpp │ │ │ ├── coder.h │ │ │ ├── dct32.hpp │ │ │ ├── dequant.hpp │ │ │ ├── dqchan.hpp │ │ │ ├── huffman.hpp │ │ │ ├── hufftabs.hpp │ │ │ ├── imdct.hpp │ │ │ ├── polyphase.hpp │ │ │ ├── scalfact.hpp │ │ │ ├── stproc.hpp │ │ │ ├── subband.hpp │ │ │ └── trigtabs.hpp │ ├── libnsgif │ │ ├── README.md │ │ ├── include │ │ │ └── nsgif.hpp │ │ ├── software_decoder.cpp │ │ ├── software_decoder.h │ │ └── src │ │ │ ├── gif.cpp │ │ │ ├── lzw.cpp │ │ │ └── lzw.h │ ├── mpeg1_decoder │ │ ├── software_decoder.cpp │ │ └── software_decoder.h │ ├── object_fled │ │ ├── readme │ │ └── src │ │ │ ├── ObjectFLED.h │ │ │ └── OjectFLED.cpp │ ├── pl_mpeg │ │ ├── README.md │ │ ├── driver.cpp │ │ ├── driver.h │ │ └── src │ │ │ └── pl_mpeg.h │ ├── teensy_audio_notefreq │ │ └── README.md │ └── yves │ │ ├── I2SClockLessLedDriveresp32s3 │ │ ├── _readme │ │ ├── driver.h │ │ └── src │ │ │ ├── I2SClockLessLedDriveresp32s3.h │ │ │ └── ___pixeltypes.h │ │ └── esp32s3_lcd_parallel_design.md ├── transpose8x1_noinline.cpp ├── transpose8x1_noinline.h └── wiring.cpp ├── test ├── test.py ├── tests ├── AGENTS.md ├── crash_handler.h ├── crash_handler_execinfo.h ├── crash_handler_libunwind.h ├── crash_handler_noop.h ├── crash_handler_win.h ├── data │ └── codec │ │ ├── edm_beat.mp3 │ │ ├── file.gif │ │ ├── file.jpg │ │ ├── file.mpeg │ │ ├── jazzy_percussion.mp3 │ │ ├── lossless.webp │ │ ├── lossy.webp │ │ ├── mary_had_a_little_lamb.mp3 │ │ ├── progressive.jpg │ │ └── test_audio_video.mpg ├── doctest.h ├── doctest_main.cpp ├── meson.build ├── readme ├── sketch_runner_demo.cpp ├── test.h ├── test_active_strip_data_json.cpp ├── test_algorithm.cpp ├── test_alignment_asan.pdb ├── test_allocator.cpp ├── test_allocator_inlined.cpp ├── test_allocator_inlined_slab.cpp ├── test_allocator_slab.cpp ├── test_async.cpp ├── test_atomic.cpp ├── test_audio_reactive_simple.cpp ├── test_audio_sound_to_midi_mono.cpp ├── test_audio_sound_to_midi_poly.cpp ├── test_await.cpp ├── test_beat_detector.cpp ├── test_bitset.cpp ├── test_bytestream.cpp ├── test_circular_buffer.cpp ├── test_codec.cpp ├── test_corkscrew.cpp ├── test_dbg.cpp ├── test_deque.cpp ├── test_downscale.cpp ├── test_dual_spi.cpp ├── test_easing.cpp ├── test_example_compilation.cpp ├── test_fastled.cpp ├── test_fft.cpp ├── test_filesystem.cpp ├── test_fixed_set.cpp ├── test_fl_string_comprehensive.cpp ├── test_frame.cpp ├── test_frame_tracker.cpp ├── test_function.cpp ├── test_fx.cpp ├── test_fx2d_blend.cpp ├── test_fx_engine.cpp ├── test_fx_time.cpp ├── test_gif.cpp ├── test_grid.cpp ├── test_hashmap.cpp ├── test_hashmap_lru.cpp ├── test_hsv16.cpp ├── test_hsv_conversion_accuracy.cpp ├── test_intmap.cpp ├── test_invoke.cpp ├── test_istream.cpp ├── test_jpeg.cpp ├── test_json.cpp ├── test_json_roundtrip.cpp ├── test_lcd50.cpp ├── test_line_simplification.cpp ├── test_lut.cpp ├── test_malloc_hooks.cpp ├── test_map.cpp ├── test_map_range.cpp ├── test_math.cpp ├── test_mp3_decoder.cpp ├── test_mpeg1.cpp ├── test_mutex.cpp ├── test_noise_range.cpp ├── test_ostream.cpp ├── test_pixelview.cpp ├── test_platformio_ini_typed.py ├── test_point.cpp ├── test_printf.cpp ├── test_priority_queue.cpp ├── test_promise.cpp ├── test_quad_spi.cpp ├── test_queue.cpp ├── test_raster.cpp ├── test_rbtree.cpp ├── test_rectangular_buffer.cpp ├── test_screenmap.cpp ├── test_screenmap_serialization.cpp ├── test_set_inlined.cpp ├── test_shared_ptr.cpp ├── test_single_spi.cpp ├── test_sketch_runner.cpp ├── test_slab_multi_alloc.cpp ├── test_slice.cpp ├── test_span_conversions.cpp ├── test_spi_bus_manager.cpp ├── test_splat.cpp ├── test_str.cpp ├── test_strip_id_map.cpp ├── test_strstream.cpp ├── test_task.cpp ├── test_thread_local.cpp ├── test_tile2x2.cpp ├── test_time.cpp ├── test_transform.cpp ├── test_transition_ramp.cpp ├── test_traverse_grid.cpp ├── test_tuple.cpp ├── test_type_traits.cpp ├── test_ui.cpp ├── test_ui_help.cpp ├── test_ui_title_bug.cpp ├── test_unordered_set.cpp ├── test_variant.cpp ├── test_vector.cpp ├── test_video.cpp ├── test_videofx_wrapper.cpp ├── test_weak_ptr.cpp ├── test_xymap.cpp └── test_xypath.cpp ├── tidy.sh ├── uno └── wasm /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 4 3 | UseTab: Never -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.clangd -------------------------------------------------------------------------------- /.claude/agents/fix-int-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/agents/fix-int-agent.md -------------------------------------------------------------------------------- /.claude/agents/lint-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/agents/lint-agent.md -------------------------------------------------------------------------------- /.claude/agents/test-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/agents/test-agent.md -------------------------------------------------------------------------------- /.claude/commands/f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/commands/f.py -------------------------------------------------------------------------------- /.claude/commands/fix-int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/commands/fix-int.md -------------------------------------------------------------------------------- /.claude/commands/gh-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/commands/gh-debug.md -------------------------------------------------------------------------------- /.claude/commands/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/commands/lint.md -------------------------------------------------------------------------------- /.claude/commands/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/commands/test.md -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.cursorignore -------------------------------------------------------------------------------- /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.cursorrules -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_digix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_digix.yml -------------------------------------------------------------------------------- /.github/workflows/build_due.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_due.yml -------------------------------------------------------------------------------- /.github/workflows/build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_linux.yml -------------------------------------------------------------------------------- /.github/workflows/build_rgbw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_rgbw.yml -------------------------------------------------------------------------------- /.github/workflows/build_uno.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_uno.yml -------------------------------------------------------------------------------- /.github/workflows/build_wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_wasm.yml -------------------------------------------------------------------------------- /.github/workflows/build_yun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/build_yun.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/docs2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/docs2.yml -------------------------------------------------------------------------------- /.github/workflows/header-perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.github/workflows/header-perf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.gitmodules -------------------------------------------------------------------------------- /.plans/mpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.plans/mpeg.md -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/keybindings.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/launch.json.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.vscode/launch.json.backup -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /ADVANCED_DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ADVANCED_DEVELOPMENT.md -------------------------------------------------------------------------------- /APA102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/APA102.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CORKSCREW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/CORKSCREW.md -------------------------------------------------------------------------------- /FEATURE_QUAD_SPI_EXTRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/FEATURE_QUAD_SPI_EXTRA.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/GEMINI.md -------------------------------------------------------------------------------- /JPEG_PROGRESSIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/JPEG_PROGRESSIVE.md -------------------------------------------------------------------------------- /LAYOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/LAYOUT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/LICENSE -------------------------------------------------------------------------------- /PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/PORTING.md -------------------------------------------------------------------------------- /QWEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/QWEN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/RELEASE.md -------------------------------------------------------------------------------- /RMT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/RMT.md -------------------------------------------------------------------------------- /RUN_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/RUN_DESIGN.md -------------------------------------------------------------------------------- /TASK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/TASK.md -------------------------------------------------------------------------------- /TASK2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/TASK2.md -------------------------------------------------------------------------------- /TASK_LCD_PARLIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/TASK_LCD_PARLIO.md -------------------------------------------------------------------------------- /TASK_PARLIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/TASK_PARLIO.md -------------------------------------------------------------------------------- /TESTCASE_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/TESTCASE_INSTRUCTIONS.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/TODO.md -------------------------------------------------------------------------------- /VIDEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/VIDEO.md -------------------------------------------------------------------------------- /apa102fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/apa102fix.md -------------------------------------------------------------------------------- /ci/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/.eslintrc.js -------------------------------------------------------------------------------- /ci/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/AGENTS.md -------------------------------------------------------------------------------- /ci/BUILD_SYSTEM_MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/BUILD_SYSTEM_MIGRATION.md -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/SYMBOL_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/SYMBOL_ANALYSIS.md -------------------------------------------------------------------------------- /ci/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/__init__.py -------------------------------------------------------------------------------- /ci/adafruit_bridge/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/adafruit_bridge/platformio.ini -------------------------------------------------------------------------------- /ci/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards.py -------------------------------------------------------------------------------- /ci/boards/bluepill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/bluepill.json -------------------------------------------------------------------------------- /ci/boards/esp32-c2-devkitm-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/esp32-c2-devkitm-1.json -------------------------------------------------------------------------------- /ci/boards/esp32-c6-devkitc-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/esp32-c6-devkitc-1.json -------------------------------------------------------------------------------- /ci/boards/esp32-h2-devkitm-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/esp32-h2-devkitm-1.json -------------------------------------------------------------------------------- /ci/boards/giga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/giga.json -------------------------------------------------------------------------------- /ci/boards/nrf52840_dk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/nrf52840_dk.json -------------------------------------------------------------------------------- /ci/boards/rpipico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/rpipico.json -------------------------------------------------------------------------------- /ci/boards/rpipico2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/rpipico2.json -------------------------------------------------------------------------------- /ci/boards/rpipicow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/boards/rpipicow.json -------------------------------------------------------------------------------- /ci/build_commands.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/build_commands.toml -------------------------------------------------------------------------------- /ci/build_docker_image_pio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/build_docker_image_pio.py -------------------------------------------------------------------------------- /ci/build_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/build_example.toml -------------------------------------------------------------------------------- /ci/build_unit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/build_unit.toml -------------------------------------------------------------------------------- /ci/check-js-types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/check-js-types.py -------------------------------------------------------------------------------- /ci/ci-check-compiled-size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-check-compiled-size.py -------------------------------------------------------------------------------- /ci/ci-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-compile -------------------------------------------------------------------------------- /ci/ci-compile-pio-ci-working.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-compile-pio-ci-working.py -------------------------------------------------------------------------------- /ci/ci-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-compile.py -------------------------------------------------------------------------------- /ci/ci-compile.save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-compile.save.py -------------------------------------------------------------------------------- /ci/ci-cppcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-cppcheck.py -------------------------------------------------------------------------------- /ci/ci-flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-flags.py -------------------------------------------------------------------------------- /ci/ci-iwyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci-iwyu.py -------------------------------------------------------------------------------- /ci/ci/fingerprint_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/ci/fingerprint_cache.py -------------------------------------------------------------------------------- /ci/compiled_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiled_size.py -------------------------------------------------------------------------------- /ci/compiled_size_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiled_size_history.py -------------------------------------------------------------------------------- /ci/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/__init__.py -------------------------------------------------------------------------------- /ci/compiler/argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/argument_parser.py -------------------------------------------------------------------------------- /ci/compiler/cache_setup.scons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/cache_setup.scons -------------------------------------------------------------------------------- /ci/compiler/compile_for_board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/compile_for_board.py -------------------------------------------------------------------------------- /ci/compiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/compiler.py -------------------------------------------------------------------------------- /ci/compiler/docker_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/docker_manager.py -------------------------------------------------------------------------------- /ci/compiler/esp32_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/esp32_artifacts.py -------------------------------------------------------------------------------- /ci/compiler/esp32_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/esp32_constants.py -------------------------------------------------------------------------------- /ci/compiler/formatting_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/formatting_utils.py -------------------------------------------------------------------------------- /ci/compiler/output_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/output_utils.py -------------------------------------------------------------------------------- /ci/compiler/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/packages.py -------------------------------------------------------------------------------- /ci/compiler/pio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/pio.py -------------------------------------------------------------------------------- /ci/compiler/platformio_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/platformio_cache.py -------------------------------------------------------------------------------- /ci/compiler/platformio_ini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/compiler/platformio_ini.py -------------------------------------------------------------------------------- /ci/decode_esp32_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/decode_esp32_backtrace.py -------------------------------------------------------------------------------- /ci/demo_symbol_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/demo_symbol_analysis.py -------------------------------------------------------------------------------- /ci/docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/.dockerignore -------------------------------------------------------------------------------- /ci/docker/DOCKER_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/DOCKER_DESIGN.md -------------------------------------------------------------------------------- /ci/docker/DockerManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/DockerManager.py -------------------------------------------------------------------------------- /ci/docker/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/Dockerfile.base -------------------------------------------------------------------------------- /ci/docker/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/Dockerfile.template -------------------------------------------------------------------------------- /ci/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/README.md -------------------------------------------------------------------------------- /ci/docker/README.qemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/README.qemu.md -------------------------------------------------------------------------------- /ci/docker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/__init__.py -------------------------------------------------------------------------------- /ci/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/build.sh -------------------------------------------------------------------------------- /ci/docker/build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/build_image.py -------------------------------------------------------------------------------- /ci/docker/build_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/build_platforms.py -------------------------------------------------------------------------------- /ci/docker/prune_old_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/prune_old_images.py -------------------------------------------------------------------------------- /ci/docker/qemu_esp32_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/qemu_esp32_docker.py -------------------------------------------------------------------------------- /ci/docker/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docker/task.md -------------------------------------------------------------------------------- /ci/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/docs.py -------------------------------------------------------------------------------- /ci/inspect_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/inspect_binary.py -------------------------------------------------------------------------------- /ci/inspect_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/inspect_elf.py -------------------------------------------------------------------------------- /ci/inspect_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/inspect_obj.py -------------------------------------------------------------------------------- /ci/iwyu/fastled.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/iwyu/fastled.imp -------------------------------------------------------------------------------- /ci/iwyu/stdlib.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/iwyu/stdlib.imp -------------------------------------------------------------------------------- /ci/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/js/README.md -------------------------------------------------------------------------------- /ci/js_lint_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/js_lint_cache.py -------------------------------------------------------------------------------- /ci/kitchensink/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/kitchensink/platformio.ini -------------------------------------------------------------------------------- /ci/lint-js-fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/lint-js-fast -------------------------------------------------------------------------------- /ci/lint-js-fast.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/lint-js-fast.backup -------------------------------------------------------------------------------- /ci/native/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/native/platformio.ini -------------------------------------------------------------------------------- /ci/optimization_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/optimization_report.py -------------------------------------------------------------------------------- /ci/perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/perf/README.md -------------------------------------------------------------------------------- /ci/perf/compile_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/perf/compile_perf.py -------------------------------------------------------------------------------- /ci/perf/test_compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/perf/test_compile.cpp -------------------------------------------------------------------------------- /ci/perf/thresholds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/perf/thresholds.json -------------------------------------------------------------------------------- /ci/pyright-cached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/pyright-cached.py -------------------------------------------------------------------------------- /ci/python_lint_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/python_lint_cache.py -------------------------------------------------------------------------------- /ci/replace_extern_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/replace_extern_c.py -------------------------------------------------------------------------------- /ci/run-clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run-clang-format.py -------------------------------------------------------------------------------- /ci/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run.py -------------------------------------------------------------------------------- /ci/run/__init__.py: -------------------------------------------------------------------------------- 1 | # Package root for TUI runtime under ci.run 2 | -------------------------------------------------------------------------------- /ci/run/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/assets/theme.css -------------------------------------------------------------------------------- /ci/run/core/__init__.py: -------------------------------------------------------------------------------- 1 | # Core runtime for FastLED CI TUI 2 | -------------------------------------------------------------------------------- /ci/run/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/core/config.py -------------------------------------------------------------------------------- /ci/run/core/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/core/runner.py -------------------------------------------------------------------------------- /ci/run/core/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/core/task.py -------------------------------------------------------------------------------- /ci/run/core/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/core/updater.py -------------------------------------------------------------------------------- /ci/run/views/__init__.py: -------------------------------------------------------------------------------- 1 | # Views package 2 | -------------------------------------------------------------------------------- /ci/run/views/all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/views/all_tests.py -------------------------------------------------------------------------------- /ci/run/views/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/views/build.py -------------------------------------------------------------------------------- /ci/run/views/main_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/views/main_menu.py -------------------------------------------------------------------------------- /ci/run/views/python_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/views/python_qa.py -------------------------------------------------------------------------------- /ci/run/views/unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run/views/unit_tests.py -------------------------------------------------------------------------------- /ci/run_test_wasm_local_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run_test_wasm_local_compile.py -------------------------------------------------------------------------------- /ci/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/run_tests.py -------------------------------------------------------------------------------- /ci/setup-js-linting-fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/setup-js-linting-fast.py -------------------------------------------------------------------------------- /ci/setup-llvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/setup-llvm.py -------------------------------------------------------------------------------- /ci/symbol_analysis_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/symbol_analysis_runner.py -------------------------------------------------------------------------------- /ci/test_unified_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/test_unified_cache.py -------------------------------------------------------------------------------- /ci/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/conftest.py -------------------------------------------------------------------------------- /ci/tests/test_bin_2_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_bin_2_elf.py -------------------------------------------------------------------------------- /ci/tests/test_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_elf.py -------------------------------------------------------------------------------- /ci/tests/test_flash_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_flash_merge.py -------------------------------------------------------------------------------- /ci/tests/test_map_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_map_parser.py -------------------------------------------------------------------------------- /ci/tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_package.py -------------------------------------------------------------------------------- /ci/tests/test_pio_merge_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_pio_merge_bin.py -------------------------------------------------------------------------------- /ci/tests/test_running_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_running_process.py -------------------------------------------------------------------------------- /ci/tests/test_symbol_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_symbol_analysis.py -------------------------------------------------------------------------------- /ci/tests/test_unified_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_unified_scanner.py -------------------------------------------------------------------------------- /ci/tests/test_wrong_defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/test_wrong_defines.py -------------------------------------------------------------------------------- /ci/tests/uno/firmware.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/uno/firmware.elf -------------------------------------------------------------------------------- /ci/tests/uno/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/uno/firmware.hex -------------------------------------------------------------------------------- /ci/tests/uno/firmware.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tests/uno/firmware.map -------------------------------------------------------------------------------- /ci/tools/gh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tools/gh/README.md -------------------------------------------------------------------------------- /ci/tools/gh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tools/gh/__init__.py -------------------------------------------------------------------------------- /ci/tools/gh/gh_healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tools/gh/gh_healthcheck.py -------------------------------------------------------------------------------- /ci/tools/gh/workflow_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tools/gh/workflow_scanner.py -------------------------------------------------------------------------------- /ci/tools/gh_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/tools/gh_debug.py -------------------------------------------------------------------------------- /ci/util/__init__.py: -------------------------------------------------------------------------------- 1 | """FastLED CI tools and utilities - internal package.""" 2 | -------------------------------------------------------------------------------- /ci/util/bin_2_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/bin_2_elf.py -------------------------------------------------------------------------------- /ci/util/build_info_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/build_info_analyzer.py -------------------------------------------------------------------------------- /ci/util/build_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/build_lock.py -------------------------------------------------------------------------------- /ci/util/cached_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/cached_compiler.py -------------------------------------------------------------------------------- /ci/util/ccache_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/ccache_config.py -------------------------------------------------------------------------------- /ci/util/check_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/check_files.py -------------------------------------------------------------------------------- /ci/util/color_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/color_output.py -------------------------------------------------------------------------------- /ci/util/concurrent_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/concurrent_run.py -------------------------------------------------------------------------------- /ci/util/console_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/console_utf8.py -------------------------------------------------------------------------------- /ci/util/cpu_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/cpu_count.py -------------------------------------------------------------------------------- /ci/util/create_build_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/create_build_dir.py -------------------------------------------------------------------------------- /ci/util/docker_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/docker_helper.py -------------------------------------------------------------------------------- /ci/util/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/elf.py -------------------------------------------------------------------------------- /ci/util/esp32_symbol_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/esp32_symbol_analysis.py -------------------------------------------------------------------------------- /ci/util/hash_fingerprint_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/hash_fingerprint_cache.py -------------------------------------------------------------------------------- /ci/util/lock_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/lock_handler.py -------------------------------------------------------------------------------- /ci/util/locked_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/locked_print.py -------------------------------------------------------------------------------- /ci/util/map_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/map_dump.py -------------------------------------------------------------------------------- /ci/util/meson_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/meson_runner.py -------------------------------------------------------------------------------- /ci/util/output_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/output_formatter.py -------------------------------------------------------------------------------- /ci/util/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/paths.py -------------------------------------------------------------------------------- /ci/util/process_status_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/process_status_display.py -------------------------------------------------------------------------------- /ci/util/resumable_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/resumable_downloader.py -------------------------------------------------------------------------------- /ci/util/running_process_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/running_process_group.py -------------------------------------------------------------------------------- /ci/util/sccache_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/sccache_config.py -------------------------------------------------------------------------------- /ci/util/scrapers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/scrapers/README.md -------------------------------------------------------------------------------- /ci/util/symbol_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/symbol_analysis.py -------------------------------------------------------------------------------- /ci/util/test_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/test_args.py -------------------------------------------------------------------------------- /ci/util/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/test_commands.py -------------------------------------------------------------------------------- /ci/util/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/test_env.py -------------------------------------------------------------------------------- /ci/util/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/test_exceptions.py -------------------------------------------------------------------------------- /ci/util/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/test_runner.py -------------------------------------------------------------------------------- /ci/util/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/test_types.py -------------------------------------------------------------------------------- /ci/util/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/tools.py -------------------------------------------------------------------------------- /ci/util/unified_test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/unified_test_cache.py -------------------------------------------------------------------------------- /ci/util/url_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/url_utils.py -------------------------------------------------------------------------------- /ci/util/xcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/util/xcache.py -------------------------------------------------------------------------------- /ci/wasm_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/wasm_compile.py -------------------------------------------------------------------------------- /ci/wasm_console_error_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/wasm_console_error_test.py -------------------------------------------------------------------------------- /ci/wasm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/ci/wasm_test.py -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/clean -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/compile -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/compile.bat -------------------------------------------------------------------------------- /component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/component.mk -------------------------------------------------------------------------------- /cool_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/cool_projects.md -------------------------------------------------------------------------------- /dev.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | uv run dev/dev.py -------------------------------------------------------------------------------- /dev/dev.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/dev/dev.ino -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/include/fastled-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/include/fastled-docs.css -------------------------------------------------------------------------------- /docs/include/fastled_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/include/fastled_logo.png -------------------------------------------------------------------------------- /docs/include/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/include/footer.html -------------------------------------------------------------------------------- /docs/include/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/include/header.html -------------------------------------------------------------------------------- /docs/javascript-linting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/javascript-linting.md -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/docs/style.css -------------------------------------------------------------------------------- /examples/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/AGENTS.md -------------------------------------------------------------------------------- /examples/AnalogOutput/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/AnalogOutput/compat.h -------------------------------------------------------------------------------- /examples/Apa102/Apa102.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Apa102/Apa102.ino -------------------------------------------------------------------------------- /examples/Apa102HD/Apa102HD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Apa102HD/Apa102HD.ino -------------------------------------------------------------------------------- /examples/Async/Async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Async/Async.h -------------------------------------------------------------------------------- /examples/Async/Async.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Async/Async.ino -------------------------------------------------------------------------------- /examples/Audio/Audio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Audio/Audio.ino -------------------------------------------------------------------------------- /examples/Audio/advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Audio/advanced/README.md -------------------------------------------------------------------------------- /examples/Audio/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Audio/simple/README.md -------------------------------------------------------------------------------- /examples/Audio/simple/fx_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Audio/simple/fx_audio.h -------------------------------------------------------------------------------- /examples/Audio/simple/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Audio/simple/simple.h -------------------------------------------------------------------------------- /examples/AudioInput/AudioInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/AudioInput/AudioInput.h -------------------------------------------------------------------------------- /examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /examples/Blur/Blur.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Blur/Blur.ino -------------------------------------------------------------------------------- /examples/Blur2d/Blur2d.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Blur2d/Blur2d.ino -------------------------------------------------------------------------------- /examples/Chromancer/detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Chromancer/detail.h -------------------------------------------------------------------------------- /examples/Chromancer/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Chromancer/gen.py -------------------------------------------------------------------------------- /examples/Chromancer/mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Chromancer/mapping.h -------------------------------------------------------------------------------- /examples/Chromancer/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Chromancer/output.json -------------------------------------------------------------------------------- /examples/Chromancer/ripple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Chromancer/ripple.h -------------------------------------------------------------------------------- /examples/Codec/Codec.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Codec/Codec.ino -------------------------------------------------------------------------------- /examples/Codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Codec/README.md -------------------------------------------------------------------------------- /examples/Codec/codec_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Codec/codec_processor.h -------------------------------------------------------------------------------- /examples/Codec/inlined_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Codec/inlined_data.cpp -------------------------------------------------------------------------------- /examples/Codec/inlined_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Codec/inlined_data.h -------------------------------------------------------------------------------- /examples/ColorBoost/ColorBoost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/ColorBoost/ColorBoost.h -------------------------------------------------------------------------------- /examples/CompileTest/arm_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/CompileTest/arm_test.h -------------------------------------------------------------------------------- /examples/CompileTest/avr_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/CompileTest/avr_test.h -------------------------------------------------------------------------------- /examples/CompileTest/wasm_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/CompileTest/wasm_test.h -------------------------------------------------------------------------------- /examples/Corkscrew/Corkscrew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Corkscrew/Corkscrew.h -------------------------------------------------------------------------------- /examples/Corkscrew/Corkscrew.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Corkscrew/Corkscrew.ino -------------------------------------------------------------------------------- /examples/Cylon/Cylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Cylon/Cylon.ino -------------------------------------------------------------------------------- /examples/Downscale/Downscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Downscale/Downscale.h -------------------------------------------------------------------------------- /examples/Downscale/Downscale.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Downscale/Downscale.ino -------------------------------------------------------------------------------- /examples/Downscale/src/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Downscale/src/wave.cpp -------------------------------------------------------------------------------- /examples/Downscale/src/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Downscale/src/wave.h -------------------------------------------------------------------------------- /examples/Downscale/src/xypaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Downscale/src/xypaths.h -------------------------------------------------------------------------------- /examples/EaseInOut/EaseInOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/EaseInOut/EaseInOut.h -------------------------------------------------------------------------------- /examples/EaseInOut/EaseInOut.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/EaseInOut/EaseInOut.ino -------------------------------------------------------------------------------- /examples/Esp8266Uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Esp8266Uart/README.md -------------------------------------------------------------------------------- /examples/FestivalStick/curr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/FestivalStick/curr.h -------------------------------------------------------------------------------- /examples/FestivalStick/old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/FestivalStick/old.h -------------------------------------------------------------------------------- /examples/Fire2012/Fire2012.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fire2012/Fire2012.ino -------------------------------------------------------------------------------- /examples/Fire2023/Fire2023.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fire2023/Fire2023.h -------------------------------------------------------------------------------- /examples/Fire2023/Fire2023.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fire2023/Fire2023.ino -------------------------------------------------------------------------------- /examples/FireMatrix/FireMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/FireMatrix/FireMatrix.h -------------------------------------------------------------------------------- /examples/Fx/FxCylon/FxCylon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxCylon/FxCylon.ino -------------------------------------------------------------------------------- /examples/Fx/FxDemoReel100/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxDemoReel100/defs.h -------------------------------------------------------------------------------- /examples/Fx/FxEngine/FxEngine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxEngine/FxEngine.ino -------------------------------------------------------------------------------- /examples/Fx/FxPacifica/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxPacifica/defs.h -------------------------------------------------------------------------------- /examples/Fx/FxSdCard/FxSdCard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxSdCard/FxSdCard.ino -------------------------------------------------------------------------------- /examples/Fx/FxWater/FxWater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxWater/FxWater.h -------------------------------------------------------------------------------- /examples/Fx/FxWater/FxWater.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxWater/FxWater.ino -------------------------------------------------------------------------------- /examples/Fx/FxWave2d/FxWave2d.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxWave2d/FxWave2d.ino -------------------------------------------------------------------------------- /examples/Fx/FxWave2d/wavefx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxWave2d/wavefx.cpp -------------------------------------------------------------------------------- /examples/Fx/FxWave2d/wavefx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Fx/FxWave2d/wavefx.h -------------------------------------------------------------------------------- /examples/HD107/HD107.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/HD107/HD107.ino -------------------------------------------------------------------------------- /examples/HSVTest/HSVTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/HSVTest/HSVTest.h -------------------------------------------------------------------------------- /examples/HSVTest/HSVTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/HSVTest/HSVTest.ino -------------------------------------------------------------------------------- /examples/Json/Json.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Json/Json.ino -------------------------------------------------------------------------------- /examples/Json/JsonSketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Json/JsonSketch.h -------------------------------------------------------------------------------- /examples/LuminescentGrand/shared/dprint.cpp: -------------------------------------------------------------------------------- 1 | 2 | 3 | #include "dprint.h" 4 | 5 | bool is_debugging = false; -------------------------------------------------------------------------------- /examples/Luminova/Luminova.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Luminova/Luminova.h -------------------------------------------------------------------------------- /examples/Luminova/Luminova.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Luminova/Luminova.ino -------------------------------------------------------------------------------- /examples/NetTest/NetTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/NetTest/NetTest.ino -------------------------------------------------------------------------------- /examples/NetTest/NetTestReal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/NetTest/NetTestReal.h -------------------------------------------------------------------------------- /examples/Noise/Noise.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Noise/Noise.ino -------------------------------------------------------------------------------- /examples/Overclock/Overclock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Overclock/Overclock.ino -------------------------------------------------------------------------------- /examples/Pacifica/Pacifica.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Pacifica/Pacifica.ino -------------------------------------------------------------------------------- /examples/PinMode/PinMode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/PinMode/PinMode.ino -------------------------------------------------------------------------------- /examples/Pintest/Pintest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Pintest/Pintest.h -------------------------------------------------------------------------------- /examples/Pintest/Pintest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Pintest/Pintest.ino -------------------------------------------------------------------------------- /examples/Pride2015/Pride2015.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Pride2015/Pride2015.ino -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/RGBW/RGBW.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/RGBW/RGBW.ino -------------------------------------------------------------------------------- /examples/UITest/UITest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/UITest/UITest.ino -------------------------------------------------------------------------------- /examples/WS2816/WS2816.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/WS2816/WS2816.ino -------------------------------------------------------------------------------- /examples/Wave/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Wave/Wave.h -------------------------------------------------------------------------------- /examples/Wave/Wave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Wave/Wave.ino -------------------------------------------------------------------------------- /examples/Wave2d/Wave2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Wave2d/Wave2d.h -------------------------------------------------------------------------------- /examples/Wave2d/Wave2d.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/Wave2d/Wave2d.ino -------------------------------------------------------------------------------- /examples/XYMatrix/XYMatrix.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYMatrix/XYMatrix.ino -------------------------------------------------------------------------------- /examples/XYPath/XYPath.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/XYPath.ino -------------------------------------------------------------------------------- /examples/XYPath/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/complex.h -------------------------------------------------------------------------------- /examples/XYPath/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/direct.h -------------------------------------------------------------------------------- /examples/XYPath/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/simple.h -------------------------------------------------------------------------------- /examples/XYPath/src/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/src/wave.cpp -------------------------------------------------------------------------------- /examples/XYPath/src/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/src/wave.h -------------------------------------------------------------------------------- /examples/XYPath/src/xypaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/src/xypaths.cpp -------------------------------------------------------------------------------- /examples/XYPath/src/xypaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/XYPath/src/xypaths.h -------------------------------------------------------------------------------- /examples/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/meson.build -------------------------------------------------------------------------------- /examples/wasm/wasm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/wasm/wasm.ino -------------------------------------------------------------------------------- /examples/wasm/wasm_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/examples/wasm/wasm_impl.h -------------------------------------------------------------------------------- /extras/AppleII.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/extras/AppleII.s65 -------------------------------------------------------------------------------- /extras/FastLED6502.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/extras/FastLED6502.s65 -------------------------------------------------------------------------------- /extras/RainbowDemo.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/extras/RainbowDemo.bin.zip -------------------------------------------------------------------------------- /extras/RainbowDemo.s65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/extras/RainbowDemo.s65 -------------------------------------------------------------------------------- /fastled4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/fastled4.md -------------------------------------------------------------------------------- /generate_compile_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/generate_compile_commands.sh -------------------------------------------------------------------------------- /inspect: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | uv run ci/inspect_obj.py -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/install -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/library.properties -------------------------------------------------------------------------------- /lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/lint -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/mcp_server.py -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/meson.build -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/platformio.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/release_notes.md -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/run -------------------------------------------------------------------------------- /scripts/enhance-js-typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/scripts/enhance-js-typing.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/FastLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/FastLED.cpp -------------------------------------------------------------------------------- /src/FastLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/FastLED.h -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/README.md -------------------------------------------------------------------------------- /src/_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/_readme -------------------------------------------------------------------------------- /src/bitswap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/bitswap.cpp -------------------------------------------------------------------------------- /src/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/bitswap.h -------------------------------------------------------------------------------- /src/chipsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/chipsets.h -------------------------------------------------------------------------------- /src/chsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/chsv.h -------------------------------------------------------------------------------- /src/cled_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/cled_controller.cpp -------------------------------------------------------------------------------- /src/cled_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/cled_controller.h -------------------------------------------------------------------------------- /src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/color.h -------------------------------------------------------------------------------- /src/colorpalettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/colorpalettes.cpp -------------------------------------------------------------------------------- /src/colorpalettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/colorpalettes.h -------------------------------------------------------------------------------- /src/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/colorutils.h -------------------------------------------------------------------------------- /src/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/controller.h -------------------------------------------------------------------------------- /src/cpixel_ledcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/cpixel_ledcontroller.h -------------------------------------------------------------------------------- /src/cpp_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/cpp_compat.h -------------------------------------------------------------------------------- /src/crgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/crgb.cpp -------------------------------------------------------------------------------- /src/crgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/crgb.h -------------------------------------------------------------------------------- /src/crgb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/crgb.hpp -------------------------------------------------------------------------------- /src/dither_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/dither_mode.h -------------------------------------------------------------------------------- /src/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/dmx.h -------------------------------------------------------------------------------- /src/eorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/eorder.h -------------------------------------------------------------------------------- /src/fastled_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastled_config.h -------------------------------------------------------------------------------- /src/fastled_delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastled_delay.cpp -------------------------------------------------------------------------------- /src/fastled_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastled_delay.h -------------------------------------------------------------------------------- /src/fastled_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastled_progmem.h -------------------------------------------------------------------------------- /src/fastpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastpin.h -------------------------------------------------------------------------------- /src/fastspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastspi.h -------------------------------------------------------------------------------- /src/fastspi_bitbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastspi_bitbang.h -------------------------------------------------------------------------------- /src/fastspi_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastspi_dma.h -------------------------------------------------------------------------------- /src/fastspi_nop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastspi_nop.h -------------------------------------------------------------------------------- /src/fastspi_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastspi_ref.h -------------------------------------------------------------------------------- /src/fastspi_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fastspi_types.h -------------------------------------------------------------------------------- /src/fl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/README.md -------------------------------------------------------------------------------- /src/fl/_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/_readme -------------------------------------------------------------------------------- /src/fl/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/algorithm.h -------------------------------------------------------------------------------- /src/fl/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/align.h -------------------------------------------------------------------------------- /src/fl/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/allocator.cpp -------------------------------------------------------------------------------- /src/fl/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/allocator.h -------------------------------------------------------------------------------- /src/fl/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/array.h -------------------------------------------------------------------------------- /src/fl/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/assert.h -------------------------------------------------------------------------------- /src/fl/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/async.cpp -------------------------------------------------------------------------------- /src/fl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/async.h -------------------------------------------------------------------------------- /src/fl/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/atomic.h -------------------------------------------------------------------------------- /src/fl/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/audio.cpp -------------------------------------------------------------------------------- /src/fl/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/audio.h -------------------------------------------------------------------------------- /src/fl/audio_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/audio_input.cpp -------------------------------------------------------------------------------- /src/fl/audio_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/audio_input.h -------------------------------------------------------------------------------- /src/fl/audio_reactive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/audio_reactive.cpp -------------------------------------------------------------------------------- /src/fl/audio_reactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/audio_reactive.h -------------------------------------------------------------------------------- /src/fl/avr_disallowed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/avr_disallowed.h -------------------------------------------------------------------------------- /src/fl/bit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bit_cast.h -------------------------------------------------------------------------------- /src/fl/bitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bitset.cpp -------------------------------------------------------------------------------- /src/fl/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bitset.h -------------------------------------------------------------------------------- /src/fl/bitset_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bitset_dynamic.h -------------------------------------------------------------------------------- /src/fl/blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/blur.cpp -------------------------------------------------------------------------------- /src/fl/blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/blur.h -------------------------------------------------------------------------------- /src/fl/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bytestream.h -------------------------------------------------------------------------------- /src/fl/bytestreammemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bytestreammemory.cpp -------------------------------------------------------------------------------- /src/fl/bytestreammemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/bytestreammemory.h -------------------------------------------------------------------------------- /src/fl/chipsets/ucs7604.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/chipsets/ucs7604.h -------------------------------------------------------------------------------- /src/fl/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/circular_buffer.h -------------------------------------------------------------------------------- /src/fl/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/clamp.h -------------------------------------------------------------------------------- /src/fl/clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/clear.h -------------------------------------------------------------------------------- /src/fl/codec/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/common.h -------------------------------------------------------------------------------- /src/fl/codec/gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/gif.cpp -------------------------------------------------------------------------------- /src/fl/codec/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/gif.h -------------------------------------------------------------------------------- /src/fl/codec/idecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/idecoder.h -------------------------------------------------------------------------------- /src/fl/codec/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/jpeg.cpp -------------------------------------------------------------------------------- /src/fl/codec/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/jpeg.h -------------------------------------------------------------------------------- /src/fl/codec/mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/mp3.cpp -------------------------------------------------------------------------------- /src/fl/codec/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/mp3.h -------------------------------------------------------------------------------- /src/fl/codec/mpeg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/mpeg1.cpp -------------------------------------------------------------------------------- /src/fl/codec/mpeg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/mpeg1.h -------------------------------------------------------------------------------- /src/fl/codec/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/pixel.cpp -------------------------------------------------------------------------------- /src/fl/codec/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/codec/pixel.h -------------------------------------------------------------------------------- /src/fl/colorutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/colorutils.cpp -------------------------------------------------------------------------------- /src/fl/colorutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/colorutils.h -------------------------------------------------------------------------------- /src/fl/colorutils_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/colorutils_misc.h -------------------------------------------------------------------------------- /src/fl/comparators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/comparators.h -------------------------------------------------------------------------------- /src/fl/compiler_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/compiler_control.h -------------------------------------------------------------------------------- /src/fl/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/convert.h -------------------------------------------------------------------------------- /src/fl/corkscrew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/corkscrew.cpp -------------------------------------------------------------------------------- /src/fl/corkscrew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/corkscrew.h -------------------------------------------------------------------------------- /src/fl/crgb_hsv16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/crgb_hsv16.cpp -------------------------------------------------------------------------------- /src/fl/cstddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/cstddef.h -------------------------------------------------------------------------------- /src/fl/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/dbg.h -------------------------------------------------------------------------------- /src/fl/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/deprecated.h -------------------------------------------------------------------------------- /src/fl/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/deque.h -------------------------------------------------------------------------------- /src/fl/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/dll.h -------------------------------------------------------------------------------- /src/fl/downscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/downscale.cpp -------------------------------------------------------------------------------- /src/fl/downscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/downscale.h -------------------------------------------------------------------------------- /src/fl/draw_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/draw_mode.h -------------------------------------------------------------------------------- /src/fl/draw_visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/draw_visitor.h -------------------------------------------------------------------------------- /src/fl/ease.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ease.cpp -------------------------------------------------------------------------------- /src/fl/ease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ease.h -------------------------------------------------------------------------------- /src/fl/engine_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/engine_events.cpp -------------------------------------------------------------------------------- /src/fl/engine_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/engine_events.h -------------------------------------------------------------------------------- /src/fl/eorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/eorder.h -------------------------------------------------------------------------------- /src/fl/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/export.h -------------------------------------------------------------------------------- /src/fl/fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fetch.cpp -------------------------------------------------------------------------------- /src/fl/fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fetch.h -------------------------------------------------------------------------------- /src/fl/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fft.cpp -------------------------------------------------------------------------------- /src/fl/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fft.h -------------------------------------------------------------------------------- /src/fl/fft_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fft_impl.cpp -------------------------------------------------------------------------------- /src/fl/fft_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fft_impl.h -------------------------------------------------------------------------------- /src/fl/file_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/file_system.cpp -------------------------------------------------------------------------------- /src/fl/file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/file_system.h -------------------------------------------------------------------------------- /src/fl/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fill.cpp -------------------------------------------------------------------------------- /src/fl/fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/fill.h -------------------------------------------------------------------------------- /src/fl/five_bit_hd_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/five_bit_hd_gamma.h -------------------------------------------------------------------------------- /src/fl/force_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/force_inline.h -------------------------------------------------------------------------------- /src/fl/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/function.h -------------------------------------------------------------------------------- /src/fl/function_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/function_list.h -------------------------------------------------------------------------------- /src/fl/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/functional.h -------------------------------------------------------------------------------- /src/fl/gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/gamma.cpp -------------------------------------------------------------------------------- /src/fl/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/gamma.h -------------------------------------------------------------------------------- /src/fl/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/geometry.h -------------------------------------------------------------------------------- /src/fl/gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/gradient.cpp -------------------------------------------------------------------------------- /src/fl/gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/gradient.h -------------------------------------------------------------------------------- /src/fl/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/grid.h -------------------------------------------------------------------------------- /src/fl/has_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/has_include.h -------------------------------------------------------------------------------- /src/fl/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hash.h -------------------------------------------------------------------------------- /src/fl/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hash_map.h -------------------------------------------------------------------------------- /src/fl/hash_map_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hash_map_lru.h -------------------------------------------------------------------------------- /src/fl/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hash_set.h -------------------------------------------------------------------------------- /src/fl/hsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hsv.h -------------------------------------------------------------------------------- /src/fl/hsv16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hsv16.cpp -------------------------------------------------------------------------------- /src/fl/hsv16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/hsv16.h -------------------------------------------------------------------------------- /src/fl/id_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/id_tracker.cpp -------------------------------------------------------------------------------- /src/fl/id_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/id_tracker.h -------------------------------------------------------------------------------- /src/fl/initializer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/initializer_list.h -------------------------------------------------------------------------------- /src/fl/inplacenew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/inplacenew.h -------------------------------------------------------------------------------- /src/fl/insert_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/insert_result.h -------------------------------------------------------------------------------- /src/fl/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/int.h -------------------------------------------------------------------------------- /src/fl/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/io.cpp -------------------------------------------------------------------------------- /src/fl/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/io.h -------------------------------------------------------------------------------- /src/fl/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/iostream.h -------------------------------------------------------------------------------- /src/fl/istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/istream.cpp -------------------------------------------------------------------------------- /src/fl/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/istream.h -------------------------------------------------------------------------------- /src/fl/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/json.cpp -------------------------------------------------------------------------------- /src/fl/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/json.h -------------------------------------------------------------------------------- /src/fl/leds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/leds.cpp -------------------------------------------------------------------------------- /src/fl/leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/leds.h -------------------------------------------------------------------------------- /src/fl/line_simplification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/line_simplification.cpp -------------------------------------------------------------------------------- /src/fl/line_simplification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/line_simplification.h -------------------------------------------------------------------------------- /src/fl/lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/lut.h -------------------------------------------------------------------------------- /src/fl/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/map.h -------------------------------------------------------------------------------- /src/fl/map_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/map_range.h -------------------------------------------------------------------------------- /src/fl/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/math.cpp -------------------------------------------------------------------------------- /src/fl/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/math.h -------------------------------------------------------------------------------- /src/fl/math_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/math_macros.h -------------------------------------------------------------------------------- /src/fl/memfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/memfill.h -------------------------------------------------------------------------------- /src/fl/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/memory.h -------------------------------------------------------------------------------- /src/fl/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/move.h -------------------------------------------------------------------------------- /src/fl/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/mutex.h -------------------------------------------------------------------------------- /src/fl/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/namespace.h -------------------------------------------------------------------------------- /src/fl/noise_woryley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/noise_woryley.cpp -------------------------------------------------------------------------------- /src/fl/noise_woryley.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/noise_woryley.h -------------------------------------------------------------------------------- /src/fl/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/optional.h -------------------------------------------------------------------------------- /src/fl/ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ostream.cpp -------------------------------------------------------------------------------- /src/fl/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ostream.h -------------------------------------------------------------------------------- /src/fl/pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/pair.h -------------------------------------------------------------------------------- /src/fl/point.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "fl/geometry.h" 4 | -------------------------------------------------------------------------------- /src/fl/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/priority_queue.h -------------------------------------------------------------------------------- /src/fl/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/promise.h -------------------------------------------------------------------------------- /src/fl/promise_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/promise_result.h -------------------------------------------------------------------------------- /src/fl/ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ptr.cpp -------------------------------------------------------------------------------- /src/fl/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ptr.h -------------------------------------------------------------------------------- /src/fl/ptr_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ptr_impl.h -------------------------------------------------------------------------------- /src/fl/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/queue.h -------------------------------------------------------------------------------- /src/fl/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/random.cpp -------------------------------------------------------------------------------- /src/fl/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/random.h -------------------------------------------------------------------------------- /src/fl/range_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/range_access.h -------------------------------------------------------------------------------- /src/fl/raster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/raster.h -------------------------------------------------------------------------------- /src/fl/raster_sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/raster_sparse.cpp -------------------------------------------------------------------------------- /src/fl/raster_sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/raster_sparse.h -------------------------------------------------------------------------------- /src/fl/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/rbtree.h -------------------------------------------------------------------------------- /src/fl/rectangular_draw_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/rectangular_draw_buffer.h -------------------------------------------------------------------------------- /src/fl/referent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/referent.cpp -------------------------------------------------------------------------------- /src/fl/referent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/referent.h -------------------------------------------------------------------------------- /src/fl/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/register.h -------------------------------------------------------------------------------- /src/fl/rgbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/rgbw.cpp -------------------------------------------------------------------------------- /src/fl/rgbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/rgbw.h -------------------------------------------------------------------------------- /src/fl/scoped_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/scoped_array.h -------------------------------------------------------------------------------- /src/fl/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/scoped_ptr.h -------------------------------------------------------------------------------- /src/fl/screenmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/screenmap.cpp -------------------------------------------------------------------------------- /src/fl/screenmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/screenmap.h -------------------------------------------------------------------------------- /src/fl/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/set.h -------------------------------------------------------------------------------- /src/fl/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/shared_ptr.h -------------------------------------------------------------------------------- /src/fl/sin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/sin32.cpp -------------------------------------------------------------------------------- /src/fl/sin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/sin32.h -------------------------------------------------------------------------------- /src/fl/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/singleton.h -------------------------------------------------------------------------------- /src/fl/sketch_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/sketch_macros.h -------------------------------------------------------------------------------- /src/fl/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/slice.h -------------------------------------------------------------------------------- /src/fl/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/span.h -------------------------------------------------------------------------------- /src/fl/splat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/splat.cpp -------------------------------------------------------------------------------- /src/fl/splat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/splat.h -------------------------------------------------------------------------------- /src/fl/sstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/sstream.h -------------------------------------------------------------------------------- /src/fl/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/stdint.h -------------------------------------------------------------------------------- /src/fl/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/stdio.h -------------------------------------------------------------------------------- /src/fl/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/str.cpp -------------------------------------------------------------------------------- /src/fl/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/str.h -------------------------------------------------------------------------------- /src/fl/str_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/str_ui.cpp -------------------------------------------------------------------------------- /src/fl/string.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "fl/str.h" 4 | -------------------------------------------------------------------------------- /src/fl/strstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/strstream.cpp -------------------------------------------------------------------------------- /src/fl/strstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/strstream.h -------------------------------------------------------------------------------- /src/fl/stub_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/stub_main.cpp -------------------------------------------------------------------------------- /src/fl/supersample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/supersample.h -------------------------------------------------------------------------------- /src/fl/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/task.cpp -------------------------------------------------------------------------------- /src/fl/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/task.h -------------------------------------------------------------------------------- /src/fl/template_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/template_magic.h -------------------------------------------------------------------------------- /src/fl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/thread.h -------------------------------------------------------------------------------- /src/fl/thread_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/thread_local.h -------------------------------------------------------------------------------- /src/fl/tile2x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/tile2x2.cpp -------------------------------------------------------------------------------- /src/fl/tile2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/tile2x2.h -------------------------------------------------------------------------------- /src/fl/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/time.cpp -------------------------------------------------------------------------------- /src/fl/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/time.h -------------------------------------------------------------------------------- /src/fl/time_alpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/time_alpha.cpp -------------------------------------------------------------------------------- /src/fl/time_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/time_alpha.h -------------------------------------------------------------------------------- /src/fl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/trace.h -------------------------------------------------------------------------------- /src/fl/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/transform.cpp -------------------------------------------------------------------------------- /src/fl/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/transform.h -------------------------------------------------------------------------------- /src/fl/traverse_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/traverse_grid.h -------------------------------------------------------------------------------- /src/fl/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/tuple.h -------------------------------------------------------------------------------- /src/fl/type_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/type_traits.cpp -------------------------------------------------------------------------------- /src/fl/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/type_traits.h -------------------------------------------------------------------------------- /src/fl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/types.h -------------------------------------------------------------------------------- /src/fl/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ui.cpp -------------------------------------------------------------------------------- /src/fl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ui.h -------------------------------------------------------------------------------- /src/fl/ui_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/ui_impl.h -------------------------------------------------------------------------------- /src/fl/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/unique_ptr.h -------------------------------------------------------------------------------- /src/fl/unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/unordered_set.h -------------------------------------------------------------------------------- /src/fl/unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/unused.h -------------------------------------------------------------------------------- /src/fl/upscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/upscale.cpp -------------------------------------------------------------------------------- /src/fl/upscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/upscale.h -------------------------------------------------------------------------------- /src/fl/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/utility.h -------------------------------------------------------------------------------- /src/fl/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/variant.h -------------------------------------------------------------------------------- /src/fl/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/vector.h -------------------------------------------------------------------------------- /src/fl/virtual_if_not_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/virtual_if_not_avr.h -------------------------------------------------------------------------------- /src/fl/warn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/warn.h -------------------------------------------------------------------------------- /src/fl/wave_simulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/wave_simulation.cpp -------------------------------------------------------------------------------- /src/fl/wave_simulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/wave_simulation.h -------------------------------------------------------------------------------- /src/fl/wave_simulation_real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/wave_simulation_real.cpp -------------------------------------------------------------------------------- /src/fl/wave_simulation_real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/wave_simulation_real.h -------------------------------------------------------------------------------- /src/fl/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/weak_ptr.h -------------------------------------------------------------------------------- /src/fl/xmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xmap.cpp -------------------------------------------------------------------------------- /src/fl/xmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xmap.h -------------------------------------------------------------------------------- /src/fl/xymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xymap.cpp -------------------------------------------------------------------------------- /src/fl/xymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xymap.h -------------------------------------------------------------------------------- /src/fl/xypath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xypath.cpp -------------------------------------------------------------------------------- /src/fl/xypath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xypath.h -------------------------------------------------------------------------------- /src/fl/xypath_impls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xypath_impls.cpp -------------------------------------------------------------------------------- /src/fl/xypath_impls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xypath_impls.h -------------------------------------------------------------------------------- /src/fl/xypath_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xypath_renderer.cpp -------------------------------------------------------------------------------- /src/fl/xypath_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fl/xypath_renderer.h -------------------------------------------------------------------------------- /src/fonts/_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fonts/_readme -------------------------------------------------------------------------------- /src/fonts/console_font_4x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fonts/console_font_4x6.h -------------------------------------------------------------------------------- /src/fonts/console_font_5x12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fonts/console_font_5x12.h -------------------------------------------------------------------------------- /src/fonts/console_font_5x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fonts/console_font_5x8.h -------------------------------------------------------------------------------- /src/fonts/console_font_6x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fonts/console_font_6x8.h -------------------------------------------------------------------------------- /src/fonts/console_font_7x9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fonts/console_font_7x9.h -------------------------------------------------------------------------------- /src/fx/1d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/README.md -------------------------------------------------------------------------------- /src/fx/1d/cylon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/cylon.h -------------------------------------------------------------------------------- /src/fx/1d/demoreel100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/demoreel100.h -------------------------------------------------------------------------------- /src/fx/1d/fire2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/fire2012.h -------------------------------------------------------------------------------- /src/fx/1d/noisewave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/noisewave.h -------------------------------------------------------------------------------- /src/fx/1d/pacifica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/pacifica.h -------------------------------------------------------------------------------- /src/fx/1d/pride2015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/pride2015.h -------------------------------------------------------------------------------- /src/fx/1d/twinklefox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/1d/twinklefox.h -------------------------------------------------------------------------------- /src/fx/2d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/README.md -------------------------------------------------------------------------------- /src/fx/2d/animartrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/animartrix.hpp -------------------------------------------------------------------------------- /src/fx/2d/animartrix_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/animartrix_detail.hpp -------------------------------------------------------------------------------- /src/fx/2d/blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/blend.cpp -------------------------------------------------------------------------------- /src/fx/2d/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/blend.h -------------------------------------------------------------------------------- /src/fx/2d/luminova.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/luminova.cpp -------------------------------------------------------------------------------- /src/fx/2d/luminova.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/luminova.h -------------------------------------------------------------------------------- /src/fx/2d/noisepalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/noisepalette.cpp -------------------------------------------------------------------------------- /src/fx/2d/noisepalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/noisepalette.h -------------------------------------------------------------------------------- /src/fx/2d/redsquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/redsquare.h -------------------------------------------------------------------------------- /src/fx/2d/scale_up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/scale_up.cpp -------------------------------------------------------------------------------- /src/fx/2d/scale_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/scale_up.h -------------------------------------------------------------------------------- /src/fx/2d/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/wave.cpp -------------------------------------------------------------------------------- /src/fx/2d/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/2d/wave.h -------------------------------------------------------------------------------- /src/fx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/README.md -------------------------------------------------------------------------------- /src/fx/audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/audio/README.md -------------------------------------------------------------------------------- /src/fx/audio/beat_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/audio/beat_detector.cpp -------------------------------------------------------------------------------- /src/fx/audio/beat_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/audio/beat_detector.h -------------------------------------------------------------------------------- /src/fx/audio/sound_to_midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/audio/sound_to_midi.cpp -------------------------------------------------------------------------------- /src/fx/audio/sound_to_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/audio/sound_to_midi.h -------------------------------------------------------------------------------- /src/fx/detail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/detail/README.md -------------------------------------------------------------------------------- /src/fx/detail/draw_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/detail/draw_context.h -------------------------------------------------------------------------------- /src/fx/detail/fx_compositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/detail/fx_compositor.h -------------------------------------------------------------------------------- /src/fx/detail/fx_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/detail/fx_layer.cpp -------------------------------------------------------------------------------- /src/fx/detail/fx_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/detail/fx_layer.h -------------------------------------------------------------------------------- /src/fx/detail/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/detail/transition.h -------------------------------------------------------------------------------- /src/fx/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/frame.cpp -------------------------------------------------------------------------------- /src/fx/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/frame.h -------------------------------------------------------------------------------- /src/fx/fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx.h -------------------------------------------------------------------------------- /src/fx/fx1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx1d.h -------------------------------------------------------------------------------- /src/fx/fx2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx2d.h -------------------------------------------------------------------------------- /src/fx/fx2d_to_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx2d_to_1d.cpp -------------------------------------------------------------------------------- /src/fx/fx2d_to_1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx2d_to_1d.h -------------------------------------------------------------------------------- /src/fx/fx_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx_engine.cpp -------------------------------------------------------------------------------- /src/fx/fx_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/fx_engine.h -------------------------------------------------------------------------------- /src/fx/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/readme -------------------------------------------------------------------------------- /src/fx/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/time.cpp -------------------------------------------------------------------------------- /src/fx/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/time.h -------------------------------------------------------------------------------- /src/fx/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video.cpp -------------------------------------------------------------------------------- /src/fx/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video.h -------------------------------------------------------------------------------- /src/fx/video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/README.md -------------------------------------------------------------------------------- /src/fx/video/frame_interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/frame_interpolator.h -------------------------------------------------------------------------------- /src/fx/video/frame_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/frame_tracker.cpp -------------------------------------------------------------------------------- /src/fx/video/frame_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/frame_tracker.h -------------------------------------------------------------------------------- /src/fx/video/pixel_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/pixel_stream.cpp -------------------------------------------------------------------------------- /src/fx/video/pixel_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/pixel_stream.h -------------------------------------------------------------------------------- /src/fx/video/video_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/video_impl.cpp -------------------------------------------------------------------------------- /src/fx/video/video_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/fx/video/video_impl.h -------------------------------------------------------------------------------- /src/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/hsv2rgb.cpp -------------------------------------------------------------------------------- /src/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/hsv2rgb.h -------------------------------------------------------------------------------- /src/led_sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/led_sysdefs.h -------------------------------------------------------------------------------- /src/lib8tion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion.cpp -------------------------------------------------------------------------------- /src/lib8tion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion.h -------------------------------------------------------------------------------- /src/lib8tion/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/config.h -------------------------------------------------------------------------------- /src/lib8tion/intmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/intmap.h -------------------------------------------------------------------------------- /src/lib8tion/lib8static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/lib8static.h -------------------------------------------------------------------------------- /src/lib8tion/math8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/math8.h -------------------------------------------------------------------------------- /src/lib8tion/memmove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/memmove.h -------------------------------------------------------------------------------- /src/lib8tion/qfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/qfx.h -------------------------------------------------------------------------------- /src/lib8tion/random8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/random8.h -------------------------------------------------------------------------------- /src/lib8tion/scale8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/scale8.h -------------------------------------------------------------------------------- /src/lib8tion/trig8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/trig8.h -------------------------------------------------------------------------------- /src/lib8tion/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/lib8tion/types.h -------------------------------------------------------------------------------- /src/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/noise.cpp -------------------------------------------------------------------------------- /src/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/noise.h -------------------------------------------------------------------------------- /src/noisegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/noisegen.h -------------------------------------------------------------------------------- /src/pixel_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/pixel_controller.h -------------------------------------------------------------------------------- /src/pixel_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/pixel_iterator.h -------------------------------------------------------------------------------- /src/pixelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/pixelset.h -------------------------------------------------------------------------------- /src/pixeltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/pixeltypes.h -------------------------------------------------------------------------------- /src/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms.cpp -------------------------------------------------------------------------------- /src/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms.h -------------------------------------------------------------------------------- /src/platforms/README_SPI_DUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/README_SPI_DUAL.md -------------------------------------------------------------------------------- /src/platforms/README_SPI_QUAD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/README_SPI_QUAD.md -------------------------------------------------------------------------------- /src/platforms/adafruit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/adafruit/README.md -------------------------------------------------------------------------------- /src/platforms/adafruit/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/adafruit/driver.h -------------------------------------------------------------------------------- /src/platforms/apollo3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/apollo3/README.md -------------------------------------------------------------------------------- /src/platforms/arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/README.md -------------------------------------------------------------------------------- /src/platforms/arm/arm_compile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/arm_compile.hpp -------------------------------------------------------------------------------- /src/platforms/arm/d21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/d21/README.md -------------------------------------------------------------------------------- /src/platforms/arm/d51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/d51/README.md -------------------------------------------------------------------------------- /src/platforms/arm/d51/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/d51/README.txt -------------------------------------------------------------------------------- /src/platforms/arm/giga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/giga/README.md -------------------------------------------------------------------------------- /src/platforms/arm/giga/armpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/giga/armpin.h -------------------------------------------------------------------------------- /src/platforms/arm/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/int.h -------------------------------------------------------------------------------- /src/platforms/arm/is_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/is_arm.h -------------------------------------------------------------------------------- /src/platforms/arm/k20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/k20/README.md -------------------------------------------------------------------------------- /src/platforms/arm/k66/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/k66/README.md -------------------------------------------------------------------------------- /src/platforms/arm/kl26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/kl26/README.md -------------------------------------------------------------------------------- /src/platforms/arm/mk20dx/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/mk20dx/int.h -------------------------------------------------------------------------------- /src/platforms/arm/mxrt1062/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/mxrt1062/int.h -------------------------------------------------------------------------------- /src/platforms/arm/nrf51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/nrf51/README.md -------------------------------------------------------------------------------- /src/platforms/arm/nrf52/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/nrf52/README.md -------------------------------------------------------------------------------- /src/platforms/arm/sam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/sam/README.md -------------------------------------------------------------------------------- /src/platforms/arm/stm32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/stm32/README.md -------------------------------------------------------------------------------- /src/platforms/arm/stm32/armpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/arm/stm32/armpin.h -------------------------------------------------------------------------------- /src/platforms/assert_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/assert_defs.h -------------------------------------------------------------------------------- /src/platforms/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/atomic.h -------------------------------------------------------------------------------- /src/platforms/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/audio.h -------------------------------------------------------------------------------- /src/platforms/avr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/README.md -------------------------------------------------------------------------------- /src/platforms/avr/avr_compile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/avr_compile.hpp -------------------------------------------------------------------------------- /src/platforms/avr/avr_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/avr_pin.h -------------------------------------------------------------------------------- /src/platforms/avr/fastled_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/fastled_avr.h -------------------------------------------------------------------------------- /src/platforms/avr/fastpin_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/fastpin_avr.h -------------------------------------------------------------------------------- /src/platforms/avr/fastspi_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/fastspi_avr.h -------------------------------------------------------------------------------- /src/platforms/avr/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/int.h -------------------------------------------------------------------------------- /src/platforms/avr/io_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/avr/io_avr.h -------------------------------------------------------------------------------- /src/platforms/compile_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/compile_test.cpp -------------------------------------------------------------------------------- /src/platforms/esp/32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/32/README.md -------------------------------------------------------------------------------- /src/platforms/esp/8266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/8266/README.md -------------------------------------------------------------------------------- /src/platforms/esp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/README.md -------------------------------------------------------------------------------- /src/platforms/esp/esp_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/esp_assert.h -------------------------------------------------------------------------------- /src/platforms/esp/esp_compile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/esp_compile.hpp -------------------------------------------------------------------------------- /src/platforms/esp/esp_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/esp_version.h -------------------------------------------------------------------------------- /src/platforms/esp/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/int.h -------------------------------------------------------------------------------- /src/platforms/esp/int_8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/int_8266.h -------------------------------------------------------------------------------- /src/platforms/esp/io_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/io_esp.h -------------------------------------------------------------------------------- /src/platforms/esp/print_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/esp/print_esp.h -------------------------------------------------------------------------------- /src/platforms/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/int.h -------------------------------------------------------------------------------- /src/platforms/io_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/io_arduino.h -------------------------------------------------------------------------------- /src/platforms/io_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/io_native.h -------------------------------------------------------------------------------- /src/platforms/io_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/io_null.h -------------------------------------------------------------------------------- /src/platforms/io_teensy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/io_teensy.h -------------------------------------------------------------------------------- /src/platforms/io_teensy_lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/io_teensy_lc.h -------------------------------------------------------------------------------- /src/platforms/null_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/null_progmem.h -------------------------------------------------------------------------------- /src/platforms/posix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/posix/README.md -------------------------------------------------------------------------------- /src/platforms/print_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/print_arduino.h -------------------------------------------------------------------------------- /src/platforms/print_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/print_native.h -------------------------------------------------------------------------------- /src/platforms/quad_spi_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/quad_spi_platform.h -------------------------------------------------------------------------------- /src/platforms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/readme.md -------------------------------------------------------------------------------- /src/platforms/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/README.md -------------------------------------------------------------------------------- /src/platforms/shared/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/atomic.h -------------------------------------------------------------------------------- /src/platforms/shared/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/int.h -------------------------------------------------------------------------------- /src/platforms/shared/spi_dual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/spi_dual.cpp -------------------------------------------------------------------------------- /src/platforms/shared/spi_dual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/spi_dual.h -------------------------------------------------------------------------------- /src/platforms/shared/spi_quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/spi_quad.cpp -------------------------------------------------------------------------------- /src/platforms/shared/spi_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/spi_quad.h -------------------------------------------------------------------------------- /src/platforms/shared/spi_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/spi_single.h -------------------------------------------------------------------------------- /src/platforms/shared/ui/json/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/shared/ui/json/ui.h -------------------------------------------------------------------------------- /src/platforms/sketch_fake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/sketch_fake.hpp -------------------------------------------------------------------------------- /src/platforms/socket_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/socket_platform.h -------------------------------------------------------------------------------- /src/platforms/stub/Arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/Arduino.cpp -------------------------------------------------------------------------------- /src/platforms/stub/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/Arduino.h -------------------------------------------------------------------------------- /src/platforms/stub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/README.md -------------------------------------------------------------------------------- /src/platforms/stub/fastled_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/fastled_stub.h -------------------------------------------------------------------------------- /src/platforms/stub/fastspi_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/fastspi_stub.h -------------------------------------------------------------------------------- /src/platforms/stub/fs_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/fs_stub.cpp -------------------------------------------------------------------------------- /src/platforms/stub/fs_stub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/fs_stub.hpp -------------------------------------------------------------------------------- /src/platforms/stub/time_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/time_stub.cpp -------------------------------------------------------------------------------- /src/platforms/stub/time_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub/time_stub.h -------------------------------------------------------------------------------- /src/platforms/stub_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/stub_main.hpp -------------------------------------------------------------------------------- /src/platforms/ui_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/ui_defs.h -------------------------------------------------------------------------------- /src/platforms/wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/README.md -------------------------------------------------------------------------------- /src/platforms/wasm/clockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/clockless.h -------------------------------------------------------------------------------- /src/platforms/wasm/compiler/modules/graphics_manager_base.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/platforms/wasm/fastspi_wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/fastspi_wasm.h -------------------------------------------------------------------------------- /src/platforms/wasm/fs_wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/fs_wasm.cpp -------------------------------------------------------------------------------- /src/platforms/wasm/fs_wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/fs_wasm.h -------------------------------------------------------------------------------- /src/platforms/wasm/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/int.h -------------------------------------------------------------------------------- /src/platforms/wasm/io_wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/io_wasm.h -------------------------------------------------------------------------------- /src/platforms/wasm/js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js.cpp -------------------------------------------------------------------------------- /src/platforms/wasm/js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js.h -------------------------------------------------------------------------------- /src/platforms/wasm/js_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js_assert.h -------------------------------------------------------------------------------- /src/platforms/wasm/js_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js_bindings.h -------------------------------------------------------------------------------- /src/platforms/wasm/js_fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js_fetch.cpp -------------------------------------------------------------------------------- /src/platforms/wasm/js_fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js_fetch.h -------------------------------------------------------------------------------- /src/platforms/wasm/js_progmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/js_progmem.h -------------------------------------------------------------------------------- /src/platforms/wasm/print_wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/print_wasm.h -------------------------------------------------------------------------------- /src/platforms/wasm/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/readme -------------------------------------------------------------------------------- /src/platforms/wasm/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/timer.cpp -------------------------------------------------------------------------------- /src/platforms/wasm/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/types.d.ts -------------------------------------------------------------------------------- /src/platforms/wasm/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/ui.cpp -------------------------------------------------------------------------------- /src/platforms/wasm/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/wasm/ui.h -------------------------------------------------------------------------------- /src/platforms/win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/win/README.md -------------------------------------------------------------------------------- /src/platforms/win/socket_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/platforms/win/socket_win.h -------------------------------------------------------------------------------- /src/power_mgt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/power_mgt.cpp -------------------------------------------------------------------------------- /src/power_mgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/power_mgt.h -------------------------------------------------------------------------------- /src/rgbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/rgbw.h -------------------------------------------------------------------------------- /src/sensors/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/sensors/button.cpp -------------------------------------------------------------------------------- /src/sensors/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/sensors/button.h -------------------------------------------------------------------------------- /src/sensors/digital_pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/sensors/digital_pin.cpp -------------------------------------------------------------------------------- /src/sensors/digital_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/sensors/digital_pin.h -------------------------------------------------------------------------------- /src/sensors/pir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/sensors/pir.cpp -------------------------------------------------------------------------------- /src/sensors/pir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/sensors/pir.h -------------------------------------------------------------------------------- /src/simplex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/simplex.cpp -------------------------------------------------------------------------------- /src/transpose8x1_noinline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/transpose8x1_noinline.cpp -------------------------------------------------------------------------------- /src/transpose8x1_noinline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/transpose8x1_noinline.h -------------------------------------------------------------------------------- /src/wiring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/src/wiring.cpp -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/test -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/test.py -------------------------------------------------------------------------------- /tests/AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/AGENTS.md -------------------------------------------------------------------------------- /tests/crash_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/crash_handler.h -------------------------------------------------------------------------------- /tests/crash_handler_execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/crash_handler_execinfo.h -------------------------------------------------------------------------------- /tests/crash_handler_noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/crash_handler_noop.h -------------------------------------------------------------------------------- /tests/crash_handler_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/crash_handler_win.h -------------------------------------------------------------------------------- /tests/data/codec/edm_beat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/data/codec/edm_beat.mp3 -------------------------------------------------------------------------------- /tests/data/codec/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/data/codec/file.gif -------------------------------------------------------------------------------- /tests/data/codec/file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/data/codec/file.jpg -------------------------------------------------------------------------------- /tests/data/codec/file.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/data/codec/file.mpeg -------------------------------------------------------------------------------- /tests/data/codec/lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/data/codec/lossless.webp -------------------------------------------------------------------------------- /tests/data/codec/lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/data/codec/lossy.webp -------------------------------------------------------------------------------- /tests/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/doctest.h -------------------------------------------------------------------------------- /tests/doctest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/doctest_main.cpp -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/readme -------------------------------------------------------------------------------- /tests/sketch_runner_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/sketch_runner_demo.cpp -------------------------------------------------------------------------------- /tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test.h -------------------------------------------------------------------------------- /tests/test_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_algorithm.cpp -------------------------------------------------------------------------------- /tests/test_alignment_asan.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_alignment_asan.pdb -------------------------------------------------------------------------------- /tests/test_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_allocator.cpp -------------------------------------------------------------------------------- /tests/test_allocator_slab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_allocator_slab.cpp -------------------------------------------------------------------------------- /tests/test_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_async.cpp -------------------------------------------------------------------------------- /tests/test_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_atomic.cpp -------------------------------------------------------------------------------- /tests/test_await.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_await.cpp -------------------------------------------------------------------------------- /tests/test_beat_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_beat_detector.cpp -------------------------------------------------------------------------------- /tests/test_bitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_bitset.cpp -------------------------------------------------------------------------------- /tests/test_bytestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_bytestream.cpp -------------------------------------------------------------------------------- /tests/test_circular_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_circular_buffer.cpp -------------------------------------------------------------------------------- /tests/test_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_codec.cpp -------------------------------------------------------------------------------- /tests/test_corkscrew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_corkscrew.cpp -------------------------------------------------------------------------------- /tests/test_dbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_dbg.cpp -------------------------------------------------------------------------------- /tests/test_deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_deque.cpp -------------------------------------------------------------------------------- /tests/test_downscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_downscale.cpp -------------------------------------------------------------------------------- /tests/test_dual_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_dual_spi.cpp -------------------------------------------------------------------------------- /tests/test_easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_easing.cpp -------------------------------------------------------------------------------- /tests/test_fastled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fastled.cpp -------------------------------------------------------------------------------- /tests/test_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fft.cpp -------------------------------------------------------------------------------- /tests/test_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_filesystem.cpp -------------------------------------------------------------------------------- /tests/test_fixed_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fixed_set.cpp -------------------------------------------------------------------------------- /tests/test_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_frame.cpp -------------------------------------------------------------------------------- /tests/test_frame_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_frame_tracker.cpp -------------------------------------------------------------------------------- /tests/test_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_function.cpp -------------------------------------------------------------------------------- /tests/test_fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fx.cpp -------------------------------------------------------------------------------- /tests/test_fx2d_blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fx2d_blend.cpp -------------------------------------------------------------------------------- /tests/test_fx_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fx_engine.cpp -------------------------------------------------------------------------------- /tests/test_fx_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_fx_time.cpp -------------------------------------------------------------------------------- /tests/test_gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_gif.cpp -------------------------------------------------------------------------------- /tests/test_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_grid.cpp -------------------------------------------------------------------------------- /tests/test_hashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_hashmap.cpp -------------------------------------------------------------------------------- /tests/test_hashmap_lru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_hashmap_lru.cpp -------------------------------------------------------------------------------- /tests/test_hsv16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_hsv16.cpp -------------------------------------------------------------------------------- /tests/test_intmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_intmap.cpp -------------------------------------------------------------------------------- /tests/test_invoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_invoke.cpp -------------------------------------------------------------------------------- /tests/test_istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_istream.cpp -------------------------------------------------------------------------------- /tests/test_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_jpeg.cpp -------------------------------------------------------------------------------- /tests/test_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_json.cpp -------------------------------------------------------------------------------- /tests/test_json_roundtrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_json_roundtrip.cpp -------------------------------------------------------------------------------- /tests/test_lcd50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_lcd50.cpp -------------------------------------------------------------------------------- /tests/test_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_lut.cpp -------------------------------------------------------------------------------- /tests/test_malloc_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_malloc_hooks.cpp -------------------------------------------------------------------------------- /tests/test_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_map.cpp -------------------------------------------------------------------------------- /tests/test_map_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_map_range.cpp -------------------------------------------------------------------------------- /tests/test_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_math.cpp -------------------------------------------------------------------------------- /tests/test_mp3_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_mp3_decoder.cpp -------------------------------------------------------------------------------- /tests/test_mpeg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_mpeg1.cpp -------------------------------------------------------------------------------- /tests/test_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_mutex.cpp -------------------------------------------------------------------------------- /tests/test_noise_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_noise_range.cpp -------------------------------------------------------------------------------- /tests/test_ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_ostream.cpp -------------------------------------------------------------------------------- /tests/test_pixelview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_pixelview.cpp -------------------------------------------------------------------------------- /tests/test_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_point.cpp -------------------------------------------------------------------------------- /tests/test_printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_printf.cpp -------------------------------------------------------------------------------- /tests/test_priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_priority_queue.cpp -------------------------------------------------------------------------------- /tests/test_promise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_promise.cpp -------------------------------------------------------------------------------- /tests/test_quad_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_quad_spi.cpp -------------------------------------------------------------------------------- /tests/test_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_queue.cpp -------------------------------------------------------------------------------- /tests/test_raster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_raster.cpp -------------------------------------------------------------------------------- /tests/test_rbtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_rbtree.cpp -------------------------------------------------------------------------------- /tests/test_screenmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_screenmap.cpp -------------------------------------------------------------------------------- /tests/test_set_inlined.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_set_inlined.cpp -------------------------------------------------------------------------------- /tests/test_shared_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_shared_ptr.cpp -------------------------------------------------------------------------------- /tests/test_single_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_single_spi.cpp -------------------------------------------------------------------------------- /tests/test_sketch_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_sketch_runner.cpp -------------------------------------------------------------------------------- /tests/test_slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_slice.cpp -------------------------------------------------------------------------------- /tests/test_spi_bus_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_spi_bus_manager.cpp -------------------------------------------------------------------------------- /tests/test_splat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_splat.cpp -------------------------------------------------------------------------------- /tests/test_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_str.cpp -------------------------------------------------------------------------------- /tests/test_strip_id_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_strip_id_map.cpp -------------------------------------------------------------------------------- /tests/test_strstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_strstream.cpp -------------------------------------------------------------------------------- /tests/test_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_task.cpp -------------------------------------------------------------------------------- /tests/test_thread_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_thread_local.cpp -------------------------------------------------------------------------------- /tests/test_tile2x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_tile2x2.cpp -------------------------------------------------------------------------------- /tests/test_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_time.cpp -------------------------------------------------------------------------------- /tests/test_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_transform.cpp -------------------------------------------------------------------------------- /tests/test_transition_ramp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_transition_ramp.cpp -------------------------------------------------------------------------------- /tests/test_traverse_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_traverse_grid.cpp -------------------------------------------------------------------------------- /tests/test_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_tuple.cpp -------------------------------------------------------------------------------- /tests/test_type_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_type_traits.cpp -------------------------------------------------------------------------------- /tests/test_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_ui.cpp -------------------------------------------------------------------------------- /tests/test_ui_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_ui_help.cpp -------------------------------------------------------------------------------- /tests/test_ui_title_bug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_ui_title_bug.cpp -------------------------------------------------------------------------------- /tests/test_unordered_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_unordered_set.cpp -------------------------------------------------------------------------------- /tests/test_variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_variant.cpp -------------------------------------------------------------------------------- /tests/test_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_vector.cpp -------------------------------------------------------------------------------- /tests/test_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_video.cpp -------------------------------------------------------------------------------- /tests/test_videofx_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_videofx_wrapper.cpp -------------------------------------------------------------------------------- /tests/test_weak_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_weak_ptr.cpp -------------------------------------------------------------------------------- /tests/test_xymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_xymap.cpp -------------------------------------------------------------------------------- /tests/test_xypath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tests/test_xypath.cpp -------------------------------------------------------------------------------- /tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/tidy.sh -------------------------------------------------------------------------------- /uno: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | ./compile uno "$@" examples/Blink 6 | -------------------------------------------------------------------------------- /wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coryking/FastLED/HEAD/wasm --------------------------------------------------------------------------------