#ifndef LORA_UTILS_H_ #define LORA_UTILS_H_ #include namespace LoRa_Utils { void setup(); void sendNewPacket(const String &newPacket); String packetSanitization(String packet); String receivePacket(); void changeFreqTx(); void changeFreqRx(); void startReceive(); } #endif