use template
This commit is contained in:
19
include/Program.h
Normal file
19
include/Program.h
Normal 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
4
include/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
Dossier pour les fichiers `headers` de CPP
|
||||
|
||||
en savoir plus: https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html
|
Reference in New Issue
Block a user