Completed the board manager rewrite

This commit is contained in:
2024-08-22 21:07:32 -04:00
parent 48f83eee38
commit 3e4f0124db
17 changed files with 666 additions and 408 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include <cstdint>
namespace BoardDriverTypes{
struct CubeStack{
uint8_t adcPin;
uint8_t ledPin;
};
};