LoRa_APRS_iGate/src/utils.h
2023-06-19 00:52:40 -04:00

20 lines
331 B
C++

#ifndef UTILS_H_
#define UTILS_H_
#include <Arduino.h>
namespace Utils {
void processStatus();
String getLocalIP();
void setupDiplay();
void activeStations();
void checkBeaconInterval();
void checkDisplayInterval();
void validateDigiFreqs();
void typeOfPacket(String packet, String packetType);
void startOTAServer();
}
#endif