First working externalized server.

This commit is contained in:
Simon Weidacher
2021-12-26 14:00:29 +01:00
parent f189d35932
commit ebb6ec68c2
9 changed files with 59 additions and 152 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _WEB_INTERFACE_HPP
#define _WEB_INTERFACE_HPP
#include <ESPAsyncWebServer.h>
class WebInterface {
AsyncWebServer* server;
public:
WebInterface();
void start();
};
#endif