create receiver lora

This commit is contained in:
2023-06-25 10:38:35 +02:00
parent 8c588ed2c0
commit 1ecf8d3270
29 changed files with 557 additions and 0 deletions

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

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