Initial project setup: ESP-IDF + C++ + FreeRTOS + WiFi + web server

This commit is contained in:
2026-04-01 20:34:59 -05:00
commit 4651d4c88a
24 changed files with 1032 additions and 0 deletions

7
main/CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
idf_component_register(SRCS "main.cpp"
"app_config.cpp"
"wifi_manager.cpp"
"web_server.cpp"
"display_manager.cpp"
INCLUDE_DIRS "."
REQUIRES freertos esp_wifi esp_http_server esp_event esp_netif nvs_flash)