add idée d'algo

This commit is contained in:
2024-01-18 19:16:23 +01:00
parent b7fe429508
commit d8f0bb07be
2 changed files with 66 additions and 1 deletions

View File

@ -1,9 +1,11 @@
#ifndef PROGRAM_H
#define PROGRAM_H
#include "Arduino.h"
#include "DolibarrClient.h"
#include "GRBL.h"
#include <Arduino.h>
#include <M5Stack.h>
#include <vector>
class Program {
public:
@ -16,8 +18,21 @@ public:
* Program WarehouseGUI loop
*/
void loop();
private:
DolibarrClient *client;
/**
* @brief stepper motor controller
*/
GRBL* grbl;
/**
* @brief stack des UUID lue
*
*/
std::vector<String>* NfcIDs;
};
#endif