mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-27 19:04:20 +01:00
19 lines
289 B
C++
19 lines
289 B
C++
#ifndef UTILS_H_
|
|
#define UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace utils {
|
|
|
|
void processStatus();
|
|
void setupDiplay();
|
|
String getLocalIP();
|
|
void checkBeaconInterval();
|
|
void checkDisplayInterval();
|
|
void validateDigiFreqs();
|
|
void typeOfPacket(String packet);
|
|
void startOTAServer();
|
|
|
|
}
|
|
|
|
#endif |