mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 16:50:16 +01:00
20 lines
349 B
C++
20 lines
349 B
C++
#ifndef LORA_UTILS_H_
|
|
#define LORA_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace LoRa_Utils {
|
|
|
|
void setup();
|
|
void sendNewPacket(const String& newPacket);
|
|
String receivePacketFromSleep();
|
|
String receivePacket();
|
|
void changeFreqTx();
|
|
void changeFreqRx();
|
|
void wakeRadio();
|
|
void sleepRadio();
|
|
|
|
}
|
|
|
|
#endif |