First Commit
This commit is contained in:
@@ -0,0 +1,152 @@
|
||||
/*
|
||||
Copyright 2016 German Martin (gmag11@gmail.com). All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are
|
||||
permitted provided that the following conditions are met :
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
of conditions and the following disclaimer in the documentation and / or other materials
|
||||
provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT(INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
The views and conclusions contained in the software and documentation are those of the
|
||||
authors and should not be interpreted as representing official policies, either expressed
|
||||
or implied, of German Martin
|
||||
*/
|
||||
|
||||
/*
|
||||
Name: NtpClient.ino
|
||||
Created: 20/08/2016
|
||||
Author: gmag11@gmail.com
|
||||
Editor: http://www.visualmicro.com
|
||||
*/
|
||||
|
||||
#include <TimeLib.h>
|
||||
#include "WifiConfig.h"
|
||||
#include <NtpClientLib.h>
|
||||
#include <WiFi.h>
|
||||
|
||||
#ifndef WIFI_CONFIG_H
|
||||
#define YOUR_WIFI_SSID "YOUR_WIFI_SSID"
|
||||
#define YOUR_WIFI_PASSWD "YOUR_WIFI_PASSWD"
|
||||
#endif // !WIFI_CONFIG_H
|
||||
|
||||
#define ONBOARDLED 5 // Built in LED on ESP-12/ESP-07
|
||||
#define SHOW_TIME_PERIOD 5000
|
||||
#define NTP_TIMEOUT 1500
|
||||
|
||||
int8_t timeZone = 1;
|
||||
int8_t minutesTimeZone = 0;
|
||||
const PROGMEM char *ntpServer = "pool.ntp.org";
|
||||
bool wifiFirstConnected = false;
|
||||
|
||||
void onEvent (system_event_id_t event, system_event_info_t info) {
|
||||
Serial.printf ("[WiFi-event] event: %d\n", event);
|
||||
|
||||
switch (event) {
|
||||
case SYSTEM_EVENT_STA_CONNECTED:
|
||||
Serial.printf ("Connected to %s. Asking for IP address.\r\n", info.connected.ssid);
|
||||
break;
|
||||
case SYSTEM_EVENT_STA_GOT_IP:
|
||||
Serial.printf ("Got IP: %s\r\n", IPAddress (info.got_ip.ip_info.ip.addr).toString ().c_str ());
|
||||
Serial.printf ("Connected: %s\r\n", WiFi.status () == WL_CONNECTED ? "yes" : "no");
|
||||
digitalWrite (ONBOARDLED, LOW); // Turn on LED
|
||||
wifiFirstConnected = true;
|
||||
break;
|
||||
case SYSTEM_EVENT_STA_DISCONNECTED:
|
||||
Serial.printf ("Disconnected from SSID: %s\n", info.disconnected.ssid);
|
||||
Serial.printf ("Reason: %d\n", info.disconnected.reason);
|
||||
digitalWrite (ONBOARDLED, HIGH); // Turn off LED
|
||||
//NTP.stop(); // NTP sync can be disabled to avoid sync errors
|
||||
WiFi.reconnect ();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void processSyncEvent (NTPSyncEvent_t ntpEvent) {
|
||||
if (ntpEvent < 0) {
|
||||
Serial.printf ("Time Sync error %d:", ntpEvent);
|
||||
if (ntpEvent == noResponse)
|
||||
Serial.println ("NTP server not reachable");
|
||||
else if (ntpEvent == invalidAddress)
|
||||
Serial.println ("Invalid NTP server address");
|
||||
} else if (!ntpEvent) {
|
||||
Serial.print ("Got NTP time: ");
|
||||
Serial.println (NTP.getTimeDateString (NTP.getLastNTPSync ()));
|
||||
} else {
|
||||
Serial.println ("NTP request Sent");
|
||||
}
|
||||
}
|
||||
|
||||
boolean syncEventTriggered = false; // True if a time even has been triggered
|
||||
NTPSyncEvent_t ntpEvent; // Last triggered event
|
||||
|
||||
void setup () {
|
||||
Serial.begin (115200);
|
||||
Serial.println ();
|
||||
WiFi.mode (WIFI_STA);
|
||||
WiFi.begin (YOUR_WIFI_SSID, YOUR_WIFI_PASSWD);
|
||||
|
||||
pinMode (ONBOARDLED, OUTPUT); // Onboard LED
|
||||
digitalWrite (ONBOARDLED, HIGH); // Switch off LED
|
||||
|
||||
NTP.onNTPSyncEvent ([](NTPSyncEvent_t event) {
|
||||
ntpEvent = event;
|
||||
syncEventTriggered = true;
|
||||
});
|
||||
|
||||
// Deprecated
|
||||
/*WiFi.onEvent([](WiFiEvent_t e) {
|
||||
Serial.printf("Event wifi -----> %d\n", e);
|
||||
});*/
|
||||
|
||||
WiFi.onEvent (onEvent);
|
||||
|
||||
}
|
||||
|
||||
void loop () {
|
||||
static int i = 0;
|
||||
static int last = 0;
|
||||
|
||||
if (wifiFirstConnected) {
|
||||
wifiFirstConnected = false;
|
||||
NTP.setInterval (63);
|
||||
NTP.setNTPTimeout (NTP_TIMEOUT);
|
||||
NTP.begin (ntpServer, timeZone, true, minutesTimeZone);
|
||||
}
|
||||
|
||||
if (syncEventTriggered) {
|
||||
processSyncEvent (ntpEvent);
|
||||
syncEventTriggered = false;
|
||||
}
|
||||
|
||||
if ((millis () - last) > SHOW_TIME_PERIOD) {
|
||||
//Serial.println(millis() - last);
|
||||
last = millis ();
|
||||
Serial.print (i); Serial.print (" ");
|
||||
Serial.print (NTP.getTimeDateString ()); Serial.print (" ");
|
||||
Serial.print (NTP.isSummerTime () ? "Summer Time. " : "Winter Time. ");
|
||||
Serial.print ("WiFi is ");
|
||||
Serial.print (WiFi.isConnected () ? "connected" : "not connected"); Serial.print (". ");
|
||||
Serial.print ("Uptime: ");
|
||||
Serial.print (NTP.getUptimeString ()); Serial.print (" since ");
|
||||
Serial.println (NTP.getTimeDateString (NTP.getFirstSync ()).c_str ());
|
||||
Serial.printf ("Free heap: %u\n", ESP.getFreeHeap ());
|
||||
i++;
|
||||
}
|
||||
delay (0);
|
||||
}
|
||||
Reference in New Issue
Block a user