Skip to content

Commit ac19e0d

Browse files
author
Uli
committed
Added functions for changing the timeOffset and updateInterval later
I added two functions: ```cpp setTimeOffset(int timeOffset) ``` Allows you to set the offset at a later stage (e.g. upon timezone changes or change from summertime to standard time) ```cpp setUpdateInterval(int updateInterval) ``` Allows to set the interval at a later point. This was helpful when not setting an offset at initialization and e.g. for other sync times during special occasions.
1 parent e0fe10f commit ac19e0d

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

NTPClient.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,14 @@ void NTPClient::end() {
140140
this->_udpSetup = false;
141141
}
142142

143+
void NTPClient::setTimeOffset(int timeOffset) {
144+
this->_timeOffset = timeOffset;
145+
}
146+
147+
void NTPClient::setUpdateInterval(int updateInterval) {
148+
this->_updateInterval = updateInterval;
149+
}
150+
143151
void NTPClient::sendNTPPacket() {
144152
// set all bytes in the buffer to 0
145153
memset(this->_packetBuffer, 0, NTP_PACKET_SIZE);
@@ -161,4 +169,3 @@ void NTPClient::sendNTPPacket() {
161169
this->_udp->write(this->_packetBuffer, NTP_PACKET_SIZE);
162170
this->_udp->endPacket();
163171
}
164-

NTPClient.h

+11
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,17 @@ class NTPClient {
6363
int getMinutes();
6464
int getSeconds();
6565

66+
/**
67+
* Changes the time offset. Useful for changing timezones dynamically
68+
*/
69+
void setTimeOffset(int timeOffset);
70+
71+
/**
72+
* Set the update interval to another frequency. E.g. useful when the
73+
* timeOffset should not be set in the constructor
74+
*/
75+
void setUpdateInterval(int updateInterval);
76+
6677
/**
6778
* @return time formatted like `hh:mm:ss`
6879
*/

examples/Advanced/Advanced.ino

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ const char *password = "<PASSWORD>";
1010

1111
WiFiUDP ntpUDP;
1212

13-
// You can specify the time server pool and the offset, (in seconds)
14-
// additionaly you can specify the update interval (in milliseconds).
13+
// You can specify the time server pool and the offset (in seconds, can be
14+
// changed later with setTimeOffset() ). Additionaly you can specify the
15+
// update interval (in milliseconds, can be changed using setUpdateInterval() ).
1516
NTPClient timeClient(ntpUDP, "europe.pool.ntp.org", 3600, 60000);
1617

1718
void setup(){

0 commit comments

Comments
 (0)