mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-06-21 18:45:24 +02:00
22 lines
389 B
C++
22 lines
389 B
C++
#ifndef UTILS_H_
|
|
#define UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace Utils {
|
|
|
|
String meassureExternalBattery();
|
|
void processStatus();
|
|
String getLocalIP();
|
|
void setupDisplay();
|
|
void activeStations();
|
|
void checkBeaconInterval();
|
|
void checkDisplayInterval();
|
|
void checkWiFiInterval();
|
|
void validateDigiFreqs();
|
|
void typeOfPacket(String packet, String packetType);
|
|
void startServer();
|
|
|
|
}
|
|
|
|
#endif |