diff --git a/src/NTPClient.cpp b/src/NTPClient.cpp index a7d14fa..c0a0188 100644 --- a/src/NTPClient.cpp +++ b/src/NTPClient.cpp @@ -129,6 +129,9 @@ int NTPClient::getMinutes() const { int NTPClient::getSeconds() const { return (this->getEpochTime() % 60); } +boolean NTPClient::getTimeValid() const { + return (this->_timeValid); +} String NTPClient::getFormattedTime() const { unsigned long rawTime = this->getEpochTime();