initial commit

This commit is contained in:
2023-08-29 10:04:07 +02:00
commit 7241619782
29 changed files with 557 additions and 0 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