use template

This commit is contained in:
2023-08-04 19:34:51 +02:00
parent 58fa315338
commit 83d8b2cba5
18 changed files with 379 additions and 20 deletions

19
include/Program.h Normal file
View File

@ -0,0 +1,19 @@
#ifndef PROGRAM_H
#define PROGRAM_H
#include "Arduino.h"
class Program {
public:
/**
* Program startup
*/
Program();
/**
* Program main loop
*/
void loop();
};
#endif