-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathntp.ino
100 lines (88 loc) · 3.71 KB
/
ntp.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
bool ntpError = true; //Network Time Protocol error -- must be set to true on boot
const char* ntpServerName = "nl.pool.ntp.org"; //http://www.pool.ntp.org/use.html
WiFiUDP udp; //needed for NTP polling
const int NTP_PACKET_SIZE = 48; // NTP time stamp is in the first 48 bytes of the message
byte packetBuffer[ NTP_PACKET_SIZE ]; //buffer to hold incoming and outgoing packets
// routine to send an NTP request to the time server at the given address
void sendNTPpacket(IPAddress& address) {
// set all bytes in the buffer to 0
memset(packetBuffer, 0, NTP_PACKET_SIZE);
// Initialize values needed to form NTP request
// (see URL above for details on the packets)
packetBuffer[0] = 0b11100011; // LI, Version, Mode
packetBuffer[1] = 0; // Stratum, or type of clock
packetBuffer[2] = 6; // Polling Interval
packetBuffer[3] = 0xEC; // Peer Clock Precision
// 8 bytes of zero for Root Delay & Root Dispersion
packetBuffer[12] = 49;
packetBuffer[13] = 0x4E;
packetBuffer[14] = 49;
packetBuffer[15] = 52;
udp.beginPacket(address, 123); //NTP requests are to port 123
udp.write(packetBuffer, NTP_PACKET_SIZE);
udp.endPacket();
}
//ONLY RETURNS THE TIME DOES NOT SET IT!!!!!!
time_t getTimefromNTP() {
/* Don't hardwire the IP address or we won't get the benefits of the pool.
Lookup the IP address for the host name instead */
IPAddress timeServerIP;
unsigned int localPort = 123;
//set the time via NTP
udp.begin(localPort);
WiFi.hostByName(ntpServerName, timeServerIP);
sendNTPpacket(timeServerIP); // send an NTP packet to a time server
// wait to see if a reply is available
bool packetReceived = false;
int timeOut = 500;
int stepSize = 10;
int timeCounter = 0;
ntpError = true;
while ( !packetReceived && timeCounter < timeOut ) {
delay(stepSize);
yield();
timeCounter += stepSize;
packetReceived = udp.parsePacket();
}
if ( packetReceived ) {
// We've received a packet, read the data from it
udp.read(packetBuffer, NTP_PACKET_SIZE); // read the packet into the buffer
unsigned long highWord = word(packetBuffer[40], packetBuffer[41]);
unsigned long lowWord = word(packetBuffer[42], packetBuffer[43]);
// combine the four bytes (two words) into a long integer
// this is NTP time (seconds since Jan 1 1900):
unsigned long secsSince1900 = highWord << 16 | lowWord;
// now convert NTP time into everyday time:
// Unix time starts on Jan 1 1970. In seconds, that's 2208988800:
const unsigned long seventyYears = 2208988800UL;
// subtract seventy years:
ntpLastSyncTime = secsSince1900 - seventyYears;
Serial.println( "NTP time stamp received @ " + formattedTime( ntpLastSyncTime ) + " UTC");
return ntpLastSyncTime; // return the time
} else {
Serial.println( F("NTP sync failed.") );
return 0; //return error code
}
}
void initNTP() {
Serial.println( F("Synching clock by NTP.") );
byte numberOfTries = 3;
byte counter = 1;
while ( ntpError && counter <= numberOfTries ) {
Serial.print( F("NTP sync try number ") ); Serial.println( counter );
time_t result = getTimefromNTP();
if ( result != 0 ) {
setTime( result );
bootTime = result;
ntpError = false;
} else {
counter++;
}
}
if ( ntpError ) {
Serial.print( F("No NTP sync. System clock is reading: ") );
} else {
Serial.print( F("Local time set to ") );
}
Serial.println( formattedTime( localTime() ) );
}