pitrix/include/http_server.h

18 lines
292 B
C
Raw Normal View History

2019-06-12 18:57:31 +00:00
#pragma once
#include "config.h"
#ifdef HTTP_SERVER_ENABLE
#include "my_wifi.h"
#include <FS.h>
#include <ESPAsyncWebServer.h>
extern AsyncWebServer http_server;
2019-06-12 18:57:31 +00:00
extern File upload_file;
extern uint32_t monitor_client;
2019-06-12 18:57:31 +00:00
void http_server_setup();
void http_server_send_framedata();
2019-06-12 18:57:31 +00:00
#endif