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

17 lines
230 B
C++

#ifndef TNC_UTILS_H_
#define TNC_UTILS_H_
#include <Arduino.h>
namespace TNC_Utils {
void setup();
void loop();
void sendToClients(const String& packet);
void sendToSerial(const String& packet);
}
#endif