pitrix/include/http_server.h

17 lines
260 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;
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