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

4
include/README.md Normal file
View File

@ -0,0 +1,4 @@
Dossier pour les fichiers `headers` de CPP
en savoir plus: https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html