mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 16:50:16 +01:00
21 lines
379 B
C++
21 lines
379 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 startReceive();
|
|
void sleepRadio();
|
|
|
|
}
|
|
|
|
#endif |