LoRa_APRS_iGate/src/utils.h
2024-03-22 19:07:32 +01:00

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