LoRa_APRS_iGate/include/ntp_utils.h

15 lines
173 B
C
Raw Normal View History

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