Création du module DolibarrClient avec ses différentes routes & création du module WarehouseGUI pour le LCD M5Stack

This commit is contained in:
2023-09-29 15:50:51 +02:00
parent 884a181f04
commit 1828d7a961
21 changed files with 646 additions and 4 deletions

View File

@ -1,7 +1,10 @@
#ifndef PROGRAM_H
#define PROGRAM_H
#define DEFAULT_BAUD_RATE 115200
#include "Arduino.h"
#include "DolibarrClient.h"
class Program {
public:
@ -11,9 +14,11 @@ public:
Program();
/**
* Program main loop
* Program WarehouseGUI loop
*/
void loop();
private:
DolibarrClient *client;
};
#endif