LoRa_APRS_iGate/include/ntp_utils.h

15 lines
173 B
C
Raw Normal View History

2024-10-14 16:44:22 +02:00
#ifndef NTP_UTILS_H_
#define NTP_UTILS_H_
#include <Arduino.h>
2024-11-06 16:47:42 +01:00
2024-10-14 16:44:22 +02:00
namespace NTP_Utils {
void setup();
void update();
String getFormatedTime();
}
#endif