NTPClient
NTPClient copied to clipboard
Connect to a NTP server
I've added 2 new functions: - `asyncUpdate()` - essentially doing same thing as `update()` but in non blocking way - `getEpochTimeMillis()` - in some cases I want to use time...
I had some issues with wrong date as i used that lib on an ESP32. After debugging i found, that the NTP server sends from time to time "0" as...
With the code below you can add the function to get the date from the rawTime this is a test code and i have not tested it very well NTPClient.h...
I like very much you library, but the 1000ms timeout (on forceUpdate) is too short some time. I would like to make a suggestion to create a function to allow...
Resolving https://github.com/arduino-libraries/NTPClient/issues/111
https://github.com/arduino-libraries/NTPClient/blob/62fafd8eca51ebf8f5f4c7662e484caba0a4dcc1/NTPClient.h#L21 For simple embedded systems that just need to know the time +/- a second a recommended polling interval of 2^10 (1024 seconds) or longer is recommended to minimize the...
Fixes #193, fixes #84 Credits to @frankB415 for the Code in Issue #193!
add getDate(), getMonth(), getYear(), getFullFormattedTime(), and getTM_t()