23 lines
496 B
C++
23 lines
496 B
C++
#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");
|
|
}
|
|
}
|