initial commit

This commit is contained in:
2026-02-12 00:45:31 -08:00
commit 5f168f370b
3024 changed files with 804889 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
This directory holds core functionality of FastLED.
Every class/struct/function in this directory must be under the
namespace fl, except for special cases.
This is done because according to the the Arduino build system,
all headers/cpp/hpp files in the root the src directory will be in global
scope and other libraries can #include them by mistake.
This has happened so many times that I've just gone ahead and migrated all
the new code to this directory, to prevent name collisions.
# When to put stuff in `fl` and not `fx`
If it's a visualizer, put it in the `fx` fodler. If it it's something to help to build a visualizer then you put it here.