mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-04-11 01:15:02 +00:00
17 lines
No EOL
226 B
C++
17 lines
No EOL
226 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 |