added method for changing time server

This commit is contained in:
Peeter Normak 2017-10-31 11:01:47 +02:00 committed by Sandeep Mistry
parent 10125217d9
commit 6bb8cdafc7
2 changed files with 11 additions and 0 deletions

View File

@ -148,6 +148,10 @@ void NTPClient::setUpdateInterval(unsigned long updateInterval) {
this->_updateInterval = updateInterval;
}
void NTPClient::setPoolServerName(const char* poolServerName) {
this->_poolServerName = poolServerName;
}
void NTPClient::sendNTPPacket() {
// set all bytes in the buffer to 0
memset(this->_packetBuffer, 0, NTP_PACKET_SIZE);

View File

@ -33,6 +33,13 @@ class NTPClient {
NTPClient(UDP& udp, const char* poolServerName, long timeOffset);
NTPClient(UDP& udp, const char* poolServerName, long timeOffset, unsigned long updateInterval);
/**
* Set time server name
*
* @param poolServerName
*/
void setPoolServerName(const char* poolServerName);
/**
* Starts the underlying UDP client with the default local port
*/