LoRa_APRS_iGate/src/lora_utils.h
richonguzman d3e45c57e0 test1
2024-05-16 17:52:25 -04:00

19 lines
332 B
C++

#ifndef LORA_UTILS_H_
#define LORA_UTILS_H_
#include <Arduino.h>
namespace LoRa_Utils {
void setup();
void sendNewPacket(const String& newPacket);
String packetSanitization(const String& packet);
String receivePacket();
void changeFreqTx();
void changeFreqRx();
void startReceive(); // ???
}
#endif