Skip to content

Commit 4aae7cf

Browse files
committed
Update for version 0.2.3
1 parent dc23a88 commit 4aae7cf

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = ESPNtpClient
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.2.2
41+
PROJECT_NUMBER = 0.2.3
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ESPNtpClient",
33
"frameworks": "arduino",
4-
"version": "0.2.2",
4+
"version": "0.2.3",
55
"keywords": "time, date, hour, minute, second, day, week, month, year, RTC, NTP, millisecond",
66
"platforms": ["espressif32", "espressif8266"],
77
"description": "High accuracy NTP client library",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESPNTPClient
2-
version=0.2.2
2+
version=0.2.3
33
author=German Martin
44
maintainer=German Martin
55
sentence=High accuracy NTP client library

src/ESPNtpClient.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file ESPNtpClient.h
3-
* @version 0.2.2
4-
* @date 13/12/2020
3+
* @version 0.2.3
4+
* @date 14/02/2021
55
* @author German Martin
66
* @brief Library to get system sync from a NTP server with microseconds accuracy in ESP8266 and ESP32
77
*/
@@ -604,6 +604,7 @@ class NTPClient {
604604
/**
605605
* @brief Converts given time and date to a char string
606606
* @param moment `timeval` object to convert to String
607+
* @param format Format as printf
607608
* @return Char string built from current time
608609
*/
609610
char* getTimeDateString (timeval moment, const char* format = "%02d/%02m/%04Y %02H:%02M:%02S") {
@@ -617,6 +618,7 @@ class NTPClient {
617618
/**
618619
* @brief Converts given time and date to a char string
619620
* @param moment `time_t` value (UNIX time) to convert to char string
621+
* @param format Format as printf
620622
* @return Char string built from current time
621623
*/
622624
char* getTimeDateString (time_t moment, const char* format = "%02d/%02m/%04Y %02H:%02M:%02S") {

0 commit comments

Comments
 (0)