2019-06-12 18:57:31 +00:00
|
|
|
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef HTTP_SERVER_ENABLE
|
|
|
|
|
2019-06-13 04:01:44 +00:00
|
|
|
#include "my_wifi.h"
|
2019-06-18 16:17:20 +00:00
|
|
|
#include <FS.h>
|
2019-10-23 04:22:53 +00:00
|
|
|
#include <ESPAsyncWebServer.h>
|
2019-06-13 04:01:44 +00:00
|
|
|
|
2019-10-23 04:22:53 +00:00
|
|
|
extern AsyncWebServer http_server;
|
2019-06-12 18:57:31 +00:00
|
|
|
|
2019-06-18 16:17:20 +00:00
|
|
|
extern File upload_file;
|
2019-10-23 10:34:46 +00:00
|
|
|
extern uint32_t monitor_client;
|
2019-06-18 16:17:20 +00:00
|
|
|
|
2019-06-12 18:57:31 +00:00
|
|
|
void http_server_setup();
|
2019-10-23 04:22:53 +00:00
|
|
|
void http_server_send_framedata();
|
2019-06-12 18:57:31 +00:00
|
|
|
#endif
|