-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimezone.ino
230 lines (193 loc) · 6.17 KB
/
timezone.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#include <WiFiManager.h>
/*
* timezone.ino
* Written By Spencer Perry
* 5/3/2016
*
*/
#include <Wire.h>
#include <Button.h>
#include <TimeLib.h>
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#include <WiFiManager.h>
#include <DNSServer.h> //Local DNS Server used for redirecting all requests to the configuration portal
#include <ESP8266WebServer.h> //Local WebServer used to serve the configuration portal
#include <Adafruit_GFX.h>
#include "Adafruit_LEDBackpack.h"
const time_t EPOCH_GRAD = 1559174400;
const time_t EPOCH_ANN = 1462233600;
#define DISPLAY_ADDRESS 0x70
#define BUTTON_PIN 2
// Create Display Object
Adafruit_7segment ClockDisplay = Adafruit_7segment();
// NTP Servers:
static const char ntpServerName[] = "us.pool.ntp.org";
//static const char ntpServerName[] = "time.nist.gov";
//static const char ntpServerName[] = "time-a.timefreq.bldrdoc.gov";
//static const char ntpServerName[] = "time-b.timefreq.bldrdoc.gov";
//static const char ntpServerName[] = "time-c.timefreq.bldrdoc.gov";
// const int timeZone = 1; // Central European Time
const int timeZone = -5; // Eastern Standard Time (USA)
//const int timeZone = -4; // Eastern Daylight Time (USA)
//const int timeZone = -8; // Pacific Standard Time (USA)
//const int timeZone = -7; // Pacific Daylight Time (USA)
WiFiUDP Udp;
unsigned int localPort = 8888; // local port to listen for UDP packets
bool TIME_24_HOUR = false;
time_t getNtpTime();
void digitalClockDisplay();
void printDigits(int digits);
void sendNTPpacket(IPAddress &address);
void setup()
{
//pinMode(2,INPUT_PULLUP);
//attachInterrupt(2, OnButtonPress, RISING);
// WiFi.disconnect();
Wire.begin(4,5);
Serial.begin(9600);
ClockDisplay.begin(DISPLAY_ADDRESS);
WiFiManager wifiManager;
//first parameter is name of access point, second is the password
wifiManager.autoConnect("4F1NGERFREDDY", "nognomes");
Udp.begin(localPort);
Serial.print("IP number assigned by DHCP is ");
Serial.println(WiFi.localIP());
Serial.println("Starting UDP");
Serial.print("Local port: ");
Serial.println(Udp.localPort());
Serial.println("waiting for sync");
setSyncProvider(getNtpTime);
setSyncInterval(300);
}
time_t prevDisplay = 0; // when the digital clock was displayed
volatile int mode = 1;
Button myButton = Button(BUTTON_PIN, true, true, 30);
void loop()
{
if (timeStatus() != timeNotSet) {
myButton.read();
if(myButton.wasReleased()) {
if(myButton.pressedFor(3000)) {
ResetClock();
}
else {
ChangeMode();
}
}
}
else {
setSyncProvider(getNtpTime);
}
CalcDisplay(mode);
ClockDisplay.writeDisplay();
}
void CalcDisplay(int mode) {
if(mode == 0) {
digitalClockDisplay();
}
else if (mode == 1) {
int diff = ((EPOCH_GRAD - now()) /60/ 60/24);
ClockDisplay.print(diff, DEC);
}
else if (mode == 2) {
int diff = (-1 * (EPOCH_ANN - now()) /60/ 60/24);
Serial.println(diff);
ClockDisplay.print(diff, DEC);
}
else {
ClockDisplay.printError();
}
}
void digitalClockDisplay()
{
// digital clock display of the time
int hours = hour();
int minutes =minute();
int seconds = (second());
int displayValue = hours*100 + minutes;
// Do 24 hour to 12 hour format conversion when required.
if (!TIME_24_HOUR) {
// Handle when hours are past 12 by subtracting 12 hours (1200 value).
if (hours > 12) {
displayValue -= 1200;
}
// Handle hour 0 (midnight) being shown as 12.
else if (hours == 0) {
displayValue += 1200;
}
}
ClockDisplay.print(displayValue, DEC);
ClockDisplay.drawColon(true);
ClockDisplay.writeDisplay();
}
void printDigits(int digits)
{
// utility for digital clock display: prints preceding colon and leading 0
Serial.print(":");
if (digits < 10)
Serial.print('0');
Serial.print(digits);
}
/*-------- NTP code ----------*/
const int 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
time_t getNtpTime()
{
IPAddress ntpServerIP; // NTP server's ip address
while (Udp.parsePacket() > 0) ; // discard any previously received packets
Serial.println("Transmit NTP Request");
// get a random server from the pool
WiFi.hostByName(ntpServerName, ntpServerIP);
Serial.print(ntpServerName);
Serial.print(": ");
Serial.println(ntpServerIP);
sendNTPpacket(ntpServerIP);
uint32_t beginWait = millis();
while (millis() - beginWait < 1500) {
int size = Udp.parsePacket();
if (size >= NTP_PACKET_SIZE) {
Serial.println("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];
return secsSince1900 - 2208988800UL + timeZone * SECS_PER_HOUR;
}
}
getNtpTime();
return 0; // return 0 if unable to get the time
}
void ChangeMode() {
Serial.print("Mode Changed");
mode = (mode + 1) % 3;
}
void ResetClock() {
Serial.print("Reseting Clock");
ESP.reset();
}
// 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();
}