diff --git a/src/app/DashboardWSServer.cpp b/src/app/DashboardWSServer.cpp new file mode 100644 index 0000000..9c56e54 --- /dev/null +++ b/src/app/DashboardWSServer.cpp @@ -0,0 +1,6 @@ +#include "DashboardWSServer.h" + +DashboardWSServer::DashboardWSServer(uint16_t port, String origin, String protocol) : WebSocketsServer(port, origin, protocol) +{ + +} diff --git a/src/app/DashboardWSServer.h b/src/app/DashboardWSServer.h new file mode 100644 index 0000000..7bff19b --- /dev/null +++ b/src/app/DashboardWSServer.h @@ -0,0 +1,13 @@ +#ifndef DASHBOARDWSSERVER_H +#define DASHBOARDWSSERVER_H +#include + +class DashboardWSServer : public WebSocketsServer +{ + public: + DashboardWSServer(uint16_t port, String origin = "", String protocol = "arduino"); + protected: + private: +}; + +#endif //DASHBOARDWSSERVER_H