mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-02-09 09:14:19 +01:00
20 lines
331 B
C++
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 |