LoRa_APRS_iGate/include/lora_utils.h
richonguzman 9801545965 update1
2024-12-04 13:59:46 -03:00

20 lines
370 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();
void sleepRadio();
}
#endif