mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 16:50:16 +01:00
23 lines
428 B
C++
23 lines
428 B
C++
#ifndef UTILS_H_
|
|
#define UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace Utils {
|
|
|
|
void processStatus();
|
|
String getLocalIP();
|
|
void setupDisplay();
|
|
void activeStations();
|
|
void checkBeaconInterval();
|
|
void checkDisplayInterval();
|
|
void checkWiFiInterval();
|
|
void validateFreqs();
|
|
void typeOfPacket(String packet, String packetType);
|
|
void print(String text);
|
|
void println(String text);
|
|
|
|
}
|
|
|
|
#endif |