added setPoolServerIP
This commit is contained in:
parent
78d4237b3a
commit
c4661d927c
@ -181,6 +181,11 @@ void NTPClient::setPoolServerName(const char* poolServerName) {
|
||||
this->_poolServerName = poolServerName;
|
||||
}
|
||||
|
||||
void NTPClient::setPoolServerIP(IPAddress poolServerIP) {
|
||||
this->_poolServerIP = poolServerIP;
|
||||
this->_poolServerName = NULL;
|
||||
}
|
||||
|
||||
void NTPClient::sendNTPPacket() {
|
||||
// set all bytes in the buffer to 0
|
||||
memset(this->_packetBuffer, 0, NTP_PACKET_SIZE);
|
||||
|
@ -44,6 +44,13 @@ class NTPClient {
|
||||
*/
|
||||
void setPoolServerName(const char* poolServerName);
|
||||
|
||||
/**
|
||||
* Set time server IP
|
||||
*
|
||||
* @param poolServerIP
|
||||
*/
|
||||
void setPoolServerIP(IPAddress poolServerIP);
|
||||
|
||||
/**
|
||||
* Set random local port
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user