-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdaytime.cpp
More file actions
125 lines (109 loc) · 3.78 KB
/
daytime.cpp
File metadata and controls
125 lines (109 loc) · 3.78 KB
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
#include "GrowduinoFirmware.h"
#include <Wire.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
#include <SPI.h>
#include <stdio.h>
#include <DS1307RTC.h>
extern Config config;
time_t time_now;
EthernetUDP Udp;
void daytime_init() {
tmElements_t tm;
RTC.read(tm);
if (RTC.chipPresent() && RTC.get() > 1400000000) {
SERIAL.println(F("RTC: Ok."));
setSyncProvider(RTC.get); // the function to get the time from the RTC
if (timeStatus() != timeSet)
SERIAL.println(F("Unable to sync with the RTC"));
else
SERIAL.println(F("RTC has set the system time"));
} else {
if (RTC.chipPresent()) {
SERIAL.println(F("The DS1307 is stopped, set time from NTP"));
SERIAL.println();
} else {
SERIAL.println(F("DS1307 read error! Please check the circuitry."));
SERIAL.println();
}
}
SERIAL.println(F("trying NTP sync"));
unsigned int localPort = 8888; // local port to listen for UDP packets
Udp.begin(localPort);
time_t ntptime = getNtpTime();
if (ntptime > 1400000000) {
// get time from internets
SERIAL.println(F("NTP has set the system time"));
setSyncProvider(getNtpTime);
if (RTC.chipPresent()) {
RTC.set(ntptime);
}
} else {
SERIAL.println(F("Unable to reach NTP server"));
}
digitalClockDisplay();
}
void digitalClockDisplay(char * time) {
// pushes current time into char * time
sprintf(time, "%4d-%02d-%02d %02d:%02d:%02d", year(), month(), day(), hour(), minute(), second());
}
void digitalClockDisplay() {
// prints time in readable format to serial console
char time[21];
digitalClockDisplay(time);
SERIAL.println(time);
}
//-------- 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() {
while (Udp.parsePacket() > 0) ; // discard any previously received packets
SERIAL.println(F("Transmit NTP Request"));
sendNTPpacket(config.ntp);
uint32_t beginWait = millis();
while (millis() - beginWait < 2000) {
int size = Udp.parsePacket();
if (size >= NTP_PACKET_SIZE) {
SERIAL.println(F("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 + config.time_zone * SECS_PER_HOUR;
}
}
SERIAL.println(F("No NTP Response :-("));
return 0; // return 0 if unable to get the time
}
// 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();
}
int daymin() {
int daymin;
daymin = hour() * 60 + minute();
return daymin;
}
time_t utc_now() {
return now() - config.time_zone * SECS_PER_HOUR;
}