Initial project commit

This commit is contained in:
2026-08-08 20:58:06 -06:00
commit ea34c399d7
18 changed files with 1039 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#pragma once
#include "service.h"
#define MAX_SERVICES 10
class ServiceManager {
public:
void add(Service* service);
void begin();
void update();
private:
Service* services[MAX_SERVICES];
uint8_t count = 0;
};