-
Notifications
You must be signed in to change notification settings - Fork 0
/
ntpStuff.ino
203 lines (171 loc) · 7.2 KB
/
ntpStuff.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
***************************************************************************
** Program : ntpStuff, part of DSMRloggerAPI
** Version : v2.0.1
**
** Copyright (c) 2020 Willem Aandewiel / Martijn Hendriks
**
** TERMS OF USE: MIT License. See bottom of file.
***************************************************************************
*/
#if defined(USE_NTP_TIME)
#include <WiFiUdp.h> // - part of ESP8266 Core https://github.com/esp8266/Arduino
WiFiUDP Udp;
#define timeZone 1 // Central European (Winter) Time
#define localPort 8888 // local port to listen for UDP packets
// NTP Servers:
static const PROGMEM char ntpPool[][30] = { "time.google.com",
"nl.pool.ntp.org",
"0.nl.pool.ntp.org",
"1.nl.pool.ntp.org",
"3.nl.pool.ntp.org"
};
static int ntpPoolIndx = 0;
char ntpServerName[50];
#define NTP_PACKET_SIZE 48 // NTP time is in the first 48 bytes of message
byte packetBuffer[NTP_PACKET_SIZE]; //buffer to hold incoming & outgoing packets
static int ntpServerNr = 0;
static bool externalNtpTime = false;
static IPAddress ntpServerIP; // NTP server's ip address
//=======================================================================
bool startNTP()
{
DebugTln(F("Starting UDP"));
Udp.begin(localPort);
DebugT(F("Local port: "));
DebugTln(String(Udp.localPort()));
DebugTln(F("waiting for NTP sync"));
setSyncProvider(getNtpTime);
setSyncInterval(60); // seconds!
if (timeStatus() == timeSet) // time is set,
{
return true; // exit with time set
}
return false;
} // startNTP()
//=======================================================================
time_t getNtpTime()
{
DECLARE_TIMER_MS(waitForPackage, 1500);
while(true)
{
yield;
ntpPoolIndx++;
if ( ntpPoolIndx > (sizeof(ntpPool) / sizeof(ntpPool[0]) -1) )
{
ntpPoolIndx = 0;
}
snprintf(ntpServerName, sizeof(ntpServerName), "%s", String(ntpPool[ntpPoolIndx]).c_str());
while (Udp.parsePacket() > 0) ; // discard any previously received packets
TelnetStream.println("Transmit NTP Request");
// get a random server from the pool
WiFi.hostByName(ntpServerName, ntpServerIP);
TelnetStream.print(ntpServerName);
TelnetStream.print(": ");
TelnetStream.println(ntpServerIP);
TelnetStream.flush();
sendNTPpacket(ntpServerIP);
RESTART_TIMER(waitForPackage);
while (!DUE(waitForPackage))
{
int size = Udp.parsePacket();
if (size >= NTP_PACKET_SIZE)
{
//TelnetStream.print("Receive NTP Response: ");
Udp.read(packetBuffer, NTP_PACKET_SIZE); // read packet into the buffer
unsigned long secsSince1900;
// convert four bytes starting at location 40 to a long integer
secsSince1900 = (unsigned long)packetBuffer[40] << 24;
secsSince1900 |= (unsigned long)packetBuffer[41] << 16;
secsSince1900 |= (unsigned long)packetBuffer[42] << 8;
secsSince1900 |= (unsigned long)packetBuffer[43];
time_t t = (secsSince1900 - 2208988800UL + timeZone * SECS_PER_HOUR);
snprintf(cMsg, sizeof(cMsg), "%02d:%02d:%02d", hour(t), minute(t), second(t));
TelnetStream.printf("[%s] Received NTP Response => new time [%s] (Winter)\r\n", cMsg, cMsg);
// return epoch ..
return secsSince1900 - 2208988800UL + timeZone * SECS_PER_HOUR;
}
}
TelnetStream.println("No NTP Response :-(");
} // while true ..
return 0; // return 0 if unable to get the time
} // getNtpTime()
// 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;
// all NTP fields have been given values, now
// you can send a packet requesting a timestamp:
Udp.beginPacket(address, 123); //NTP requests are to port 123
Udp.write(packetBuffer, NTP_PACKET_SIZE);
Udp.endPacket();
} // sendNTPpacket()
//=======================================================================
time_t dateTime2Epoch(char const *date, char const *time)
{
char s_month[5];
int year, day, h, m, s;
tmElements_t t;
static const char month_names[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
if (sscanf(date, "%s %d %d", s_month, &day, &year) != 3)
{
DebugTf("Not a valid date string [%s]\r\n", date);
return 0;
}
t.Day = day;
// Find where is s_month in month_names. Deduce month value.
t.Month = (strstr(month_names, s_month) - month_names) / 3 + 1;
//DebugTf("date=>[%d-%02d-%02d]\r\n", t.Year, t.Month, t.Day);
// Find where is s_month in month_names. Deduce month value.
t.Month = (strstr(month_names, s_month) - month_names) / 3 + 1;
if (sscanf(time, "%2d:%2d:%2d", &h, &m, &s) != 3)
{
DebugTf("Not a valid time string [%s] (time set to '0')\r\n", time);
h = 0;
m = 0;
s = 0;
}
t.Hour = h;
t.Minute = m;
t.Second = s;
//DebugTf("time=>[%02d:%02d:%02d]\r\n", t.Hour, t.Minute, t.Second);
t.Year = CalendarYrToTm(year);
//DebugTf("converted=>[%d-%02d-%02d @ %02d:%02d:%02d]\r\n", t.Year, t.Month, t.Day, t.Hour, t.Minute, t.Second);
return makeTime(t);
} // dateTime2Epoch()
#endif
/***************************************************************************
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to permit
* persons to whom the Software is furnished to do so, subject to the
* following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
***************************************************************************/