add main algo V1 with mock

This commit is contained in:
2024-01-18 21:02:11 +01:00
parent 463e71fe10
commit 04474bfb94
2 changed files with 32 additions and 9 deletions

View File

@ -3,6 +3,7 @@
#include "DolibarrClient.h"
#include "GRBL.h"
#include "NfcReader.h"
#include <Arduino.h>
#include <M5Stack.h>
// #include <vector>
@ -27,6 +28,12 @@ private:
* @brief stepper motor controller
*/
GRBL* grbl;
/**
* @brief nfc reader
*
*/
NfcReader* NFC;
};
#endif