This commit is contained in:
Stephan Mühl
2023-03-22 12:15:18 +01:00
committed by GitHub
parent 3e12414a87
commit adb5102869
203 changed files with 35010 additions and 0 deletions

22
src/ServerManager.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef ServerManager_h
#define ServerManager_h
#include <Arduino.h>
class ServerManager_
{
private:
ServerManager_() = default;
public:
static ServerManager_ &getInstance();
void setup();
void tick();
void loadSettings();
bool isConnected;
void SaveSettings();
};
extern ServerManager_ &ServerManager;
#endif