Reorganize project in multiple files for readability

This commit is contained in:
Alexis Fourmaux 2026-05-03 16:21:50 +02:00
parent bfb177c0c8
commit 01289ec357
4 changed files with 87 additions and 58 deletions

11
src/lora.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef LORA_H
#define LORA_H
#include <Arduino.h>
void loraReset();
void loraInit();
void loraJoin();
void loraSend(uint8_t payload[], size_t size);
#endif