LoRa_APRS_iGate/include/tnc_utils.h

17 lines
226 B
C
Raw Normal View History

2024-03-09 16:25:23 +01:00
#ifndef TNC_UTILS_H_
#define TNC_UTILS_H_
#include <Arduino.h>
2024-11-06 16:47:42 +01:00
2024-03-09 16:25:23 +01:00
namespace TNC_Utils {
void setup();
void loop();
2025-05-18 14:44:46 +02:00
2024-05-15 22:41:07 +02:00
void sendToClients(const String& packet);
void sendToSerial(const String& packet);
2024-03-09 16:25:23 +01:00
}
#endif