init main program object

This commit is contained in:
Clément Boesmier
2023-03-07 10:30:34 +01:00
parent 30a198b3b5
commit 2c76f567b3
3 changed files with 36 additions and 2 deletions

21
IOT/include/Program.h Normal file
View File

@ -0,0 +1,21 @@
#ifndef PROGRAM_H
#define PROGRAM_H
class Program{
public:
/**
* @brief Construct the maine Program object
*
*/
Program();
/**
* @brief main loop function
*
*/
void loop();
private:
/* data */
};
#endif