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

22
main/main.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include <stdio.h>
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <esp_log.h>
#include "app_config.hpp"
static const char *TAG = "main";
extern "C" void app_main(void)
{
ESP_LOGI(TAG, "ZoneBridge Application Starting");
ESP_LOGI(TAG, "ESP32-S3 Touch LCD 4.3\" (Waveshare)");
// Initialize application components
app_init();
// Main application loop
while (1) {
vTaskDelay(pdMS_TO_TICKS(1000));
//ESP_LOGI(TAG, "heartbeat");
}
}