mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-06-15 19:34:55 +02:00
17 lines
245 B
C++
17 lines
245 B
C++
#ifndef UTILS_H_
|
|
#define UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace utils {
|
|
|
|
void processStatus();
|
|
void setupDiplay();
|
|
void checkBeaconInterval();
|
|
void checkDisplayInterval();
|
|
void validateDigiFreqs();
|
|
void typeOfPacket(String packet);
|
|
|
|
}
|
|
|
|
#endif |