TimeNTP_ESP8266WiFi.ino 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Time_NTP.pde
  3. * Example showing time sync to NTP time source
  4. *
  5. * This sketch uses the ESP8266WiFi library
  6. */
  7. #include <TimeLib.h>
  8. #include <ESP8266WiFi.h>
  9. #include <WiFiUdp.h>
  10. const char ssid[] = "*************"; // your network SSID (name)
  11. const char pass[] = "********"; // your network password
  12. // NTP Servers:
  13. IPAddress timeServer(132, 163, 4, 101); // time-a.timefreq.bldrdoc.gov
  14. // IPAddress timeServer(132, 163, 4, 102); // time-b.timefreq.bldrdoc.gov
  15. // IPAddress timeServer(132, 163, 4, 103); // time-c.timefreq.bldrdoc.gov
  16. const int timeZone = 1; // Central European Time
  17. //const int timeZone = -5; // Eastern Standard Time (USA)
  18. //const int timeZone = -4; // Eastern Daylight Time (USA)
  19. //const int timeZone = -8; // Pacific Standard Time (USA)
  20. //const int timeZone = -7; // Pacific Daylight Time (USA)
  21. WiFiUDP Udp;
  22. unsigned int localPort = 8888; // local port to listen for UDP packets
  23. void setup()
  24. {
  25. Serial.begin(9600);
  26. while (!Serial) ; // Needed for Leonardo only
  27. delay(250);
  28. Serial.println("TimeNTP Example");
  29. Serial.print("Connecting to ");
  30. Serial.println(ssid);
  31. WiFi.begin(ssid, pass);
  32. while (WiFi.status() != WL_CONNECTED) {
  33. delay(500);
  34. Serial.print(".");
  35. }
  36. Serial.print("IP number assigned by DHCP is ");
  37. Serial.println(WiFi.localIP());
  38. Serial.println("Starting UDP");
  39. Udp.begin(localPort);
  40. Serial.print("Local port: ");
  41. Serial.println(Udp.localPort());
  42. Serial.println("waiting for sync");
  43. setSyncProvider(getNtpTime);
  44. }
  45. time_t prevDisplay = 0; // when the digital clock was displayed
  46. void loop()
  47. {
  48. if (timeStatus() != timeNotSet) {
  49. if (now() != prevDisplay) { //update the display only if time has changed
  50. prevDisplay = now();
  51. digitalClockDisplay();
  52. }
  53. }
  54. }
  55. void digitalClockDisplay(){
  56. // digital clock display of the time
  57. Serial.print(hour());
  58. printDigits(minute());
  59. printDigits(second());
  60. Serial.print(" ");
  61. Serial.print(day());
  62. Serial.print(".");
  63. Serial.print(month());
  64. Serial.print(".");
  65. Serial.print(year());
  66. Serial.println();
  67. }
  68. void printDigits(int digits){
  69. // utility for digital clock display: prints preceding colon and leading 0
  70. Serial.print(":");
  71. if(digits < 10)
  72. Serial.print('0');
  73. Serial.print(digits);
  74. }
  75. /*-------- NTP code ----------*/
  76. const int NTP_PACKET_SIZE = 48; // NTP time is in the first 48 bytes of message
  77. byte packetBuffer[NTP_PACKET_SIZE]; //buffer to hold incoming & outgoing packets
  78. time_t getNtpTime()
  79. {
  80. while (Udp.parsePacket() > 0) ; // discard any previously received packets
  81. Serial.println("Transmit NTP Request");
  82. sendNTPpacket(timeServer);
  83. uint32_t beginWait = millis();
  84. while (millis() - beginWait < 1500) {
  85. int size = Udp.parsePacket();
  86. if (size >= NTP_PACKET_SIZE) {
  87. Serial.println("Receive NTP Response");
  88. Udp.read(packetBuffer, NTP_PACKET_SIZE); // read packet into the buffer
  89. unsigned long secsSince1900;
  90. // convert four bytes starting at location 40 to a long integer
  91. secsSince1900 = (unsigned long)packetBuffer[40] << 24;
  92. secsSince1900 |= (unsigned long)packetBuffer[41] << 16;
  93. secsSince1900 |= (unsigned long)packetBuffer[42] << 8;
  94. secsSince1900 |= (unsigned long)packetBuffer[43];
  95. return secsSince1900 - 2208988800UL + timeZone * SECS_PER_HOUR;
  96. }
  97. }
  98. Serial.println("No NTP Response :-(");
  99. return 0; // return 0 if unable to get the time
  100. }
  101. // send an NTP request to the time server at the given address
  102. void sendNTPpacket(IPAddress &address)
  103. {
  104. // set all bytes in the buffer to 0
  105. memset(packetBuffer, 0, NTP_PACKET_SIZE);
  106. // Initialize values needed to form NTP request
  107. // (see URL above for details on the packets)
  108. packetBuffer[0] = 0b11100011; // LI, Version, Mode
  109. packetBuffer[1] = 0; // Stratum, or type of clock
  110. packetBuffer[2] = 6; // Polling Interval
  111. packetBuffer[3] = 0xEC; // Peer Clock Precision
  112. // 8 bytes of zero for Root Delay & Root Dispersion
  113. packetBuffer[12] = 49;
  114. packetBuffer[13] = 0x4E;
  115. packetBuffer[14] = 49;
  116. packetBuffer[15] = 52;
  117. // all NTP fields have been given values, now
  118. // you can send a packet requesting a timestamp:
  119. Udp.beginPacket(address, 123); //NTP requests are to port 123
  120. Udp.write(packetBuffer, NTP_PACKET_SIZE);
  121. Udp.endPacket();
  122. }