Power management progress

This commit is contained in:
2024-12-12 17:09:13 +01:00
parent 8eeb829a91
commit 51a3d9e8f6
8 changed files with 184 additions and 23 deletions

View File

@@ -19,6 +19,7 @@
#include "infraredLight/InfraredLight.h"
#include "communication/Communication.h"
#include "display/Display.h"
#include "power/Power.h"
class Dezibot {
@@ -33,6 +34,7 @@ public:
InfraredLight infraredLight;
Communication communication;
Display display;
Power power;
void begin(void);
};