add ArduinoJSON location to project overview

This commit is contained in:
Frank
2026-04-05 14:58:51 +02:00
parent 4452a6c955
commit 19b44b73c4

View File

@@ -52,6 +52,7 @@ tl;dr:
* Build targets: `platformio.ini`. * Build targets: `platformio.ini`.
* Web UI source: `wled00/data/`. * Web UI source: `wled00/data/`.
* Auto-generated headers: `wled00/html_*.h`**never edit or commit**. * Auto-generated headers: `wled00/html_*.h`**never edit or commit**.
* ArduinoJSON + AsyncJSON: `wled00/dependencies/json`
* Usermods: `usermods/` (`.h` files, included via `usermods_list.cpp`). * Usermods: `usermods/` (`.h` files, included via `usermods_list.cpp`).
* CI/CD: `.github/workflows/`. * CI/CD: `.github/workflows/`.
@@ -61,23 +62,23 @@ Main development trunk: `mdev` branch. Make PRs against this branch.
Detailed overview: Detailed overview:
```text ```text
wled00/ # Firmware source (C++) wled00/ # Firmware source (C++)
├── data/ # Web UI source (HTML, CSS, JS) ├── data/ # Web UI source (HTML, CSS, JS)
├── src/ # Core modules, fonts, dependencies ├── src/ # Core modules, fonts, dependencies
├── html_*.h # Auto-generated (DO NOT EDIT OR COMMIT) └─ dependencies/json # Project-specific ArduinoJSON (v6.18.1) and AsyncJSON (v6)
── wled.h # Main firmware configuration, and global variables ── html_*.h # Auto-generated (DO NOT EDIT OR COMMIT)
usermods/ # Community addons (.h files, included via usermods_list.cpp) └── wled.h # Main firmware configuration, and global variables
lib/ # Project specific custom libraries. PlatformIO will compile them to separate static libraries and link them usermods/ # Community addons (.h files, included via usermods_list.cpp)
platformio.ini # Build targets and configuration lib/ # Project specific custom libraries. PlatformIO will compile them to separate static libraries and link them
platformio.ini # Build targets and configuration
platformio_override.sample.ini # examples for custom build configurations - entries must be copied into platformio_override.ini to use them. platformio_override.sample.ini # examples for custom build configurations - entries must be copied into platformio_override.ini to use them.
# platformio_override.ini is _not_ stored in the WLED repository! # platformio_override.ini is _not_ stored in the WLED repository!
pio-scripts/ # Build tools (platformio)
pio-scripts/ # Build tools (platformio) tools/ # Build tools (Node.js), partition files, and generic utilities
tools/ # Build tools (Node.js), partition files, and generic utilities tools/cdata.js # Web UI → header build script
tools/cdata.js # Web UI → header build script tools/cdata-test.js # Test suite
tools/cdata-test.js # Test suite package.json # Node.js scripts and release ID
package.json # Node.js scripts and release ID .github/workflows/ # CI/CD pipelines
.github/workflows/ # CI/CD pipelines
``` ```
<!-- HUMAN_ONLY_END --> <!-- HUMAN_ONLY_END -->