LoRa_APRS_iGate/src/station_utils.h
2023-06-06 14:26:17 -04:00

14 lines
202 B
C++

#ifndef STATION_UTILS_H_
#define STATION_UTILS_H_
#include <Arduino.h>
namespace STATION_Utils {
void deleteNotHeard();
void updateLastHeard(String station);
bool wasHeard(String station);
}
#endif