23 lines
451 B
C++
23 lines
451 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 validateDigiFreqs();
|
|
void typeOfPacket(String packet, String packetType);
|
|
void onOTAStart();
|
|
void onOTAEnd(bool success);
|
|
void startServer();
|
|
|
|
}
|
|
|
|
#endif |