release
This commit is contained in:
22
src/ServerManager.h
Normal file
22
src/ServerManager.h
Normal 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
|
||||
Reference in New Issue
Block a user