mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-06-12 09:55:02 +02:00
17 lines
299 B
C++
17 lines
299 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 receivePacket();
|
|
void changeFreqTx();
|
|
void changeFreqRx();
|
|
|
|
}
|
|
|
|
#endif |