From 1cb65d7bb82283743c03a196bbc6a147b1cc1f41 Mon Sep 17 00:00:00 2001 From: Atick Faisal Date: Tue, 17 Nov 2020 14:38:25 +0600 Subject: [PATCH] Added documentation for the functions --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 46f9eb5..7334472 100644 --- a/README.md +++ b/README.md @@ -47,4 +47,24 @@ void loop() { ``` ## Function documentation -`getEpochTime` returns the unix epoch, which are the seconds elapsed since 00:00:00 UTC on 1 January 1970 (leap seconds are ignored, every day is treated as having 86400 seconds). **Attention**: If you have set a time offset this time offset will be added to your epoch timestamp. + +#### Constructor: NTPClient(UDP& udp, const char* poolServerName, long timeOffset, unsigned long updateInterval) + - `udp` : WiFiUDP object. + - `poolSeverName` (optional): NTP Server Name. Use the nearest server to your loaction. The server list can be found [here](https://www.ntppool.org/en/). The default is pool.ntp.org (global). + - `timeOffset` (optional): Time offset with GMT for your location in seconds. The deafut is 0. + - `updateInterval` (optional): Refresh Interval im milliseconds. Default is 60000 millisecond or 1 minute. + +#### getEpochTime() +Returns the unix epoch, which are the seconds elapsed since 00:00:00 UTC on 1 January 1970 (leap seconds are ignored, every day is treated as having 86400 seconds). **Attention**: If you have set a time offset this time offset will be added to your epoch timestamp. + +#### getFormattedTime() +Returns the formatted current time string in hh:mm:ss format. + +#### getHours() +Returns the current "hour" in 24 hour format (0-23). + +#### getMinutes() +Returns the current "minute" integer. + +#### getSeconds() +Returns the current "second" integer.