mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-25 18:10:49 +01:00
18 lines
369 B
C++
18 lines
369 B
C++
#ifndef LORA_UTILS_H_
|
|
#define LORA_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace LoRa_Utils {
|
|
|
|
void setup();
|
|
void sendNewPacket(const String &typeOfMessage, const String &newPacket);
|
|
String generatePacket(String aprsisPacket);
|
|
String packetSanitization(String packet);
|
|
String receivePacket();
|
|
void changeFreqTx();
|
|
void changeFreqRx();
|
|
|
|
}
|
|
|
|
#endif |