Smokedevil10
New member
Доброго времени суток!
Подскажите пожалуйста, что нужно исправить или добавить, для отключения по времени от сети WiFi.
Задача такая, нужно что бы происходила синхронизация по NTP время от времени для проверки точности времени на часах DS3231
Подскажите пожалуйста, что нужно исправить или добавить, для отключения по времени от сети WiFi.
Задача такая, нужно что бы происходила синхронизация по NTP время от времени для проверки точности времени на часах DS3231
Код:
/*
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 <ESP8266WiFi.h>
#include <Wire.h> //I2C library
#include<ESP8266WiFi.h>
#ifndef WIFI_CONFIG_H
#define YOUR_WIFI_SSID "Link"
#define YOUR_WIFI_PASSWD "PasswordSCS-plus"
#endif // !WIFI_CONFIG_H
#define ONBOARDLED 2 // Built in LED on ESP-12/ESP-07
int8_t timeZone = 5;
int8_t minutesTimeZone = 0;
bool wifiFirstConnected = true;
// Start NTP only after IP network is connected
void onSTAGotIP (WiFiEventStationModeGotIP ipInfo) {
Serial.printf ("Got IP: %s\r\n", ipInfo.ip.toString ().c_str ());
Serial.printf ("Connected: %s\r\n", WiFi.status () == WL_CONNECTED ? "yes" : "no");
digitalWrite (ONBOARDLED, LOW); // Turn on LED
wifiFirstConnected = true;
}
// Manage network disconnection
void onSTADisconnected (WiFiEventStationModeDisconnected event_info) {
Serial.printf ("Disconnected from SSID: %s\n", event_info.ssid.c_str ());
Serial.printf ("Reason: %d\n", event_info.reason);
digitalWrite (ONBOARDLED, HIGH); // Turn off LED
NTP.stop(); // NTP sync can be disabled to avoid sync errors
}
void processSyncEvent (NTPSyncEvent_t ntpEvent) {
if (ntpEvent) {
Serial.print ("Time Sync error: ");
if (ntpEvent == noResponse)
Serial.println ("NTP server not reachable");
else if (ntpEvent == invalidAddress)
Serial.println ("Invalid NTP server address");
} else {
Serial.print ("Got NTP time: ");
Serial.println (NTP.getTimeDateString (NTP.getLastNTPSync ()));
}
}
boolean syncEventTriggered = true; // True if a time even has been triggered
NTPSyncEvent_t ntpEvent; // Last triggered event
void setup () {
static WiFiEventHandler e1, e2, e3;
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);
// });*/
e1 = WiFi.onStationModeGotIP (onSTAGotIP);// As soon WiFi is connected, start NTP Client
e2 = WiFi.onStationModeDisconnected (onSTADisconnected);
// e3 = WiFi.onStationModeConnected (onSTAConnected);
}
void loop () {
static int i = 0;
static int last = 0;
if (wifiFirstConnected) {
wifiFirstConnected = false;
NTP.begin ("asia.pool.ntp.org", timeZone, +5, minutesTimeZone);
NTP.setInterval (63000000);
}
if (syncEventTriggered) {
processSyncEvent (ntpEvent);
syncEventTriggered = false;
}
if ((millis () - last) > 5100) {
//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 ());
i++;
}
delay (0);
}