LoRa_APRS_iGate/src/tnc_utils.h
2024-03-22 19:07:32 +01:00

16 lines
215 B
C++

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