Files
LoRa_APRS_iGate/src/lora_utils.h
T
2023-06-06 11:21:59 -04:00

12 lines
192 B
C++

#ifndef LORA_UTILS_H_
#define LORA_UTILS_H_
namespace LoRaUtils {
void setup();
void sendNewPacket(const String &typeOfMessage, const String &newPacket);
//String receivePacket();
}
#endif