42 lines
618 B
C
42 lines
618 B
C
|
|
#ifndef __MAIN_H__
|
|
#define __MAIN_H__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/task.h"
|
|
#include "freertos/semphr.h"
|
|
#include "esp_timer.h"
|
|
#include "esp_err.h"
|
|
#include "esp_log.h"
|
|
#include "esp_lcd_panel_io.h"
|
|
#include "esp_lcd_panel_vendor.h"
|
|
#include "esp_lcd_panel_ops.h"
|
|
#include "esp_spiffs.h"
|
|
#include "driver/gpio.h"
|
|
#include "driver/ledc.h"
|
|
#include "lvgl.h"
|
|
|
|
|
|
#include <string.h>
|
|
#include "wifi_station.h"
|
|
#include "ssid_manager.h"
|
|
#include "dns_server.h"
|
|
#include "wifi_configuration_ap.h"
|
|
|
|
#include "nvs_flash.h"
|
|
|
|
|
|
/*°üº¬´®¿Ú¿ØÖÆÍ·Îļþ*/
|
|
#include "FluxUart.h"
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|