18 lines
292 B
C
18 lines
292 B
C
#pragma once
|
|
#include "config.h"
|
|
|
|
#ifdef HTTP_SERVER_ENABLE
|
|
|
|
#include "my_wifi.h"
|
|
#include <FS.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
extern AsyncWebServer http_server;
|
|
|
|
extern File upload_file;
|
|
extern uint32_t monitor_client;
|
|
|
|
void http_server_setup();
|
|
void http_server_send_framedata();
|
|
#endif
|