15 lines
336 B
C
15 lines
336 B
C
#include <stdio.h>
|
|
#include "wifi_init.h"
|
|
#include "fs_init.h"
|
|
#include "mqtt_manager.h"
|
|
#include "esp_log.h"
|
|
|
|
void app_main()
|
|
{
|
|
fs_init(); // <-- mount SPIFFS first
|
|
wifi_init();
|
|
mqtt_manager_init();
|
|
|
|
// ESP_LOGI("APP", "TEJ FOTA TEST COMPLETED!!!!!!!!!!!!!!!!!!Device ready. Waiting for OTA RPC commands…");
|
|
}
|