2016-12-31 00:38:51 +01:00
|
|
|
/*
|
|
|
|
* Main sketch
|
|
|
|
*/
|
2017-12-14 00:12:02 +01:00
|
|
|
/*
|
|
|
|
* @title WLED project sketch
|
|
|
|
* @version 0.5dev
|
|
|
|
* @author Christian Schwinne
|
|
|
|
*/
|
2016-12-31 00:38:51 +01:00
|
|
|
|
2016-09-11 23:07:18 +02:00
|
|
|
#include <Arduino.h>
|
|
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#include <ESP8266WebServer.h>
|
2016-09-21 23:23:18 +02:00
|
|
|
#include <ESP8266HTTPUpdateServer.h>
|
2016-09-11 23:07:18 +02:00
|
|
|
#include <ESP8266mDNS.h>
|
|
|
|
#include <EEPROM.h>
|
2016-11-27 22:37:51 +01:00
|
|
|
#include <WiFiUDP.h>
|
2017-12-11 23:59:12 +01:00
|
|
|
#include "src/dependencies/time/Time.h"
|
|
|
|
#include "src/dependencies/time/TimeLib.h"
|
|
|
|
#include "src/dependencies/timezone/Timezone.h"
|
|
|
|
#include "src/dependencies/alexa-multiple/switch.h"
|
|
|
|
#include "src/dependencies/alexa-multiple/UpnpBroadcastResponder.h"
|
|
|
|
#include "src/dependencies/alexa-multiple/CallbackFunction.h"
|
2017-02-01 21:25:09 +01:00
|
|
|
#include "htmls00.h"
|
|
|
|
#include "htmls01.h"
|
2017-12-11 23:59:12 +01:00
|
|
|
#include "WS2812FX.h"
|
2016-09-11 23:07:18 +02:00
|
|
|
|
2017-03-20 19:56:07 +01:00
|
|
|
//version in format yymmddb (b = daily build)
|
2017-12-14 00:12:02 +01:00
|
|
|
#define VERSION 1712132
|
2017-03-20 19:56:07 +01:00
|
|
|
|
2017-10-28 23:40:06 +02:00
|
|
|
//If you have an RGBW strip, uncomment first line in WS2812FX.h!
|
2017-09-27 21:45:58 +02:00
|
|
|
|
2017-01-15 00:24:28 +01:00
|
|
|
//to toggle usb serial debug (un)comment following line
|
2017-05-08 21:00:06 +02:00
|
|
|
//#define DEBUG
|
|
|
|
|
|
|
|
//spiffs FS only useful for debug
|
|
|
|
//#define USEFS
|
2017-01-15 00:24:28 +01:00
|
|
|
|
2017-09-18 10:20:04 +02:00
|
|
|
//overlays, needed for clocks etc.
|
2017-12-14 00:12:02 +01:00
|
|
|
#define USEOVERLAYS
|
|
|
|
|
|
|
|
//support for the CRONIXIE clock by Diamex
|
|
|
|
//#define CRONIXIE
|
2017-09-18 10:20:04 +02:00
|
|
|
|
2017-05-15 12:24:59 +02:00
|
|
|
#ifdef USEFS
|
|
|
|
#include <FS.h>
|
|
|
|
#endif
|
|
|
|
|
2017-01-15 00:24:28 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define DEBUG_PRINT(x) Serial.print (x)
|
|
|
|
#define DEBUG_PRINTLN(x) Serial.println (x)
|
|
|
|
#define DEBUG_PRINTF(x) Serial.printf (x)
|
|
|
|
#else
|
|
|
|
#define DEBUG_PRINT(x)
|
|
|
|
#define DEBUG_PRINTLN(x)
|
|
|
|
#define DEBUG_PRINTF(x)
|
|
|
|
#endif
|
|
|
|
|
2017-11-28 00:21:29 +01:00
|
|
|
//eeprom Version code, enables default settings instead of 0 init on update
|
2017-12-12 14:52:28 +01:00
|
|
|
#define EEPVER 3
|
2017-11-28 00:21:29 +01:00
|
|
|
//0 -> old version, default
|
2017-11-30 23:35:22 +01:00
|
|
|
//1 -> 0.4p 1711272 and up
|
|
|
|
//2 -> 0.4p 1711302 and up
|
2017-12-12 14:52:28 +01:00
|
|
|
//3 -> 0.4 1712121 and up
|
2017-11-28 00:21:29 +01:00
|
|
|
|
2016-12-11 20:11:14 +01:00
|
|
|
//Hardware-settings (only changeble via code)
|
2017-12-12 14:52:28 +01:00
|
|
|
#define LEDCOUNT 255 //maximum, exact count set-able via settings
|
|
|
|
#define MAXDIRECT 255 //for direct access like arls, should be >= LEDCOUNT
|
2016-12-11 20:11:14 +01:00
|
|
|
uint8_t buttonPin = 0; //needs pull-up
|
2017-02-21 23:13:05 +01:00
|
|
|
uint8_t auxPin = 15; //use e.g. for external relay
|
2017-01-27 22:59:01 +01:00
|
|
|
uint8_t auxDefaultState = 0; //0: input 1: high 2: low
|
|
|
|
uint8_t auxTriggeredState = 0; //0: input 1: high 2: low
|
2016-12-29 00:03:58 +01:00
|
|
|
|
2017-01-15 00:24:28 +01:00
|
|
|
//AP and OTA default passwords (change them!)
|
|
|
|
String appass = "wled1234";
|
|
|
|
String otapass = "wledota";
|
|
|
|
|
2016-12-29 00:03:58 +01:00
|
|
|
TimeChangeRule CEST = {"CEST", Last, Sun, Mar, 2, 120}; //Central European Summer Time
|
|
|
|
TimeChangeRule CET = {"CET ", Last, Sun, Oct, 3, 60}; //Central European Standard Time
|
2016-12-31 00:38:51 +01:00
|
|
|
Timezone TZ(CEST, CET);
|
2016-12-29 00:03:58 +01:00
|
|
|
TimeChangeRule *tcr; //pointer to the time change rule, use to get the TZ abbrev
|
|
|
|
time_t local;
|
|
|
|
|
2017-12-14 00:12:02 +01:00
|
|
|
//cronixie defaults
|
|
|
|
#ifdef CRONIXIE
|
|
|
|
#undef LEDCOUNT
|
|
|
|
#define LEDCOUNT 120
|
|
|
|
#undef MAXDIRECT
|
|
|
|
#define MAXDIRECT 48
|
|
|
|
uint8_t ledcount = 6;
|
|
|
|
String apssid = "CRONIXIE-AP";
|
|
|
|
String alexaInvocationName = "Clock";
|
|
|
|
long cronixieRefreshMs = 99;
|
|
|
|
unsigned long cronixieRefreshedTime;
|
|
|
|
#endif
|
|
|
|
|
2016-10-25 22:11:04 +02:00
|
|
|
//Default CONFIG
|
2017-12-14 00:12:02 +01:00
|
|
|
String serverDescription = "WLED 0.5dev";
|
2016-09-11 23:07:18 +02:00
|
|
|
String clientssid = "Your_Network_Here";
|
|
|
|
String clientpass = "Dummy_Pass";
|
|
|
|
String cmdns = "led";
|
2017-12-14 00:12:02 +01:00
|
|
|
#ifndef CRONIXIE
|
|
|
|
uint8_t ledcount = 100;
|
2016-09-11 23:07:18 +02:00
|
|
|
String apssid = "WLED-AP";
|
2017-12-14 00:12:02 +01:00
|
|
|
#endif
|
2016-11-19 19:12:57 +01:00
|
|
|
uint8_t apchannel = 1;
|
|
|
|
uint8_t aphide = 0;
|
2017-11-20 00:07:37 +01:00
|
|
|
uint8_t apWaitTimeSecs = 32;
|
|
|
|
boolean recoveryAPDisabled = false;
|
2016-09-11 23:07:18 +02:00
|
|
|
IPAddress staticip(0, 0, 0, 0);
|
|
|
|
IPAddress staticgateway(0, 0, 0, 0);
|
|
|
|
IPAddress staticsubnet(255, 255, 255, 0);
|
2017-05-07 23:51:42 +02:00
|
|
|
boolean useHSB = false, useHSBDefault = false;
|
2017-03-07 22:05:18 +01:00
|
|
|
boolean turnOnAtBoot = true;
|
2017-12-12 14:52:28 +01:00
|
|
|
uint8_t bootPreset = 0;
|
2017-09-18 08:28:43 +02:00
|
|
|
byte col_s[]{255, 159, 0};
|
2017-11-30 23:35:22 +01:00
|
|
|
byte col_sec_s[]{0, 0, 0};
|
2017-12-12 20:22:12 +01:00
|
|
|
boolean useRGBW = false;
|
2017-09-27 21:45:58 +02:00
|
|
|
byte white_s = 0;
|
2017-11-30 23:35:22 +01:00
|
|
|
byte white_sec_s = 0;
|
2016-12-29 00:03:58 +01:00
|
|
|
byte bri_s = 127;
|
2017-04-26 14:04:53 +02:00
|
|
|
uint8_t bri_nl = 0, bri_nls;
|
2016-10-25 22:11:04 +02:00
|
|
|
boolean fadeTransition = true;
|
2017-10-28 22:22:37 +02:00
|
|
|
boolean sweepTransition = false; boolean sweepDirection = true;
|
2017-09-18 08:28:43 +02:00
|
|
|
uint16_t transitionDelay = 1200;
|
2017-11-20 00:07:37 +01:00
|
|
|
boolean otaLock = true;
|
|
|
|
boolean onlyAP = false;
|
2016-10-30 20:04:39 +01:00
|
|
|
boolean buttonEnabled = true;
|
2017-05-08 21:46:04 +02:00
|
|
|
boolean notifyDirect = true, notifyButton = true, notifyDirectDefault = true;
|
2016-12-14 21:40:09 +01:00
|
|
|
boolean receiveNotifications = true, receiveNotificationsDefault = true;
|
2016-11-03 22:07:07 +01:00
|
|
|
uint8_t bri_n = 100;
|
2016-11-19 19:12:57 +01:00
|
|
|
uint8_t nightlightDelayMins = 60;
|
|
|
|
boolean nightlightFade = true;
|
2016-12-11 20:11:14 +01:00
|
|
|
uint16_t udpPort = 21324;
|
2016-12-29 00:03:58 +01:00
|
|
|
uint8_t effectDefault = 0;
|
|
|
|
uint8_t effectSpeedDefault = 75;
|
2017-02-07 14:24:42 +01:00
|
|
|
//NTP stuff
|
2017-01-15 00:24:28 +01:00
|
|
|
boolean ntpEnabled = false;
|
2017-02-07 16:02:27 +01:00
|
|
|
IPAddress ntpServerIP;
|
2017-12-12 14:52:28 +01:00
|
|
|
const char* ntpServerName = "pool.ntp.org";
|
2017-11-30 23:35:22 +01:00
|
|
|
//custom chase
|
|
|
|
uint8_t cc_numPrimary = 2;
|
|
|
|
uint8_t cc_numSecondary = 4;
|
|
|
|
uint8_t cc_index1 = 0;
|
|
|
|
uint8_t cc_index2 = ledcount -1;
|
|
|
|
bool cc_fromStart = true, cc_fromEnd = false;
|
|
|
|
uint8_t cc_step = 1;
|
|
|
|
uint8_t cc_start = 0;
|
2017-02-07 14:24:42 +01:00
|
|
|
|
2017-02-21 23:59:47 +01:00
|
|
|
//alexa
|
|
|
|
boolean alexaEnabled = true;
|
2017-12-14 00:12:02 +01:00
|
|
|
#ifndef CRONIXIE
|
2017-02-24 23:21:48 +01:00
|
|
|
String alexaInvocationName = "Light";
|
2017-12-14 00:12:02 +01:00
|
|
|
#endif
|
2017-02-21 23:59:47 +01:00
|
|
|
boolean alexaNotify = false;
|
|
|
|
|
2016-11-27 16:45:54 +01:00
|
|
|
double transitionResolution = 0.011;
|
2016-10-25 22:11:04 +02:00
|
|
|
|
|
|
|
//Internal vars
|
2016-12-29 00:03:58 +01:00
|
|
|
byte col[]{0, 0, 0};
|
2016-10-25 22:11:04 +02:00
|
|
|
byte col_old[]{0, 0, 0};
|
|
|
|
byte col_t[]{0, 0, 0};
|
2016-11-20 00:07:04 +01:00
|
|
|
byte col_it[]{0, 0, 0};
|
2017-11-28 16:04:11 +01:00
|
|
|
byte col_sec[]{0, 0, 0};
|
|
|
|
byte col_sec_it[]{0, 0, 0};
|
2017-10-12 17:09:59 +02:00
|
|
|
byte white, white_old, white_t, white_it;
|
2017-11-28 16:04:11 +01:00
|
|
|
byte white_sec, white_sec_it;
|
2017-12-11 23:59:12 +01:00
|
|
|
uint8_t lastRandomIndex = 0;
|
2017-02-07 16:02:27 +01:00
|
|
|
unsigned long transitionStartTime;
|
|
|
|
unsigned long nightlightStartTime;
|
2016-11-19 19:39:17 +01:00
|
|
|
float tper_last = 0;
|
2016-12-29 00:03:58 +01:00
|
|
|
byte bri = 0;
|
2016-10-25 22:11:04 +02:00
|
|
|
byte bri_old = 0;
|
|
|
|
byte bri_t = 0;
|
2016-11-20 00:07:04 +01:00
|
|
|
byte bri_it = 0;
|
2016-10-30 20:04:39 +01:00
|
|
|
byte bri_last = 127;
|
2016-10-25 22:11:04 +02:00
|
|
|
boolean transitionActive = false;
|
2016-10-30 20:04:39 +01:00
|
|
|
boolean buttonPressedBefore = false;
|
2016-11-19 19:12:57 +01:00
|
|
|
boolean nightlightActive = false;
|
2016-11-26 19:34:05 +01:00
|
|
|
boolean nightlightActive_old = false;
|
2016-11-27 16:45:54 +01:00
|
|
|
int nightlightDelayMs;
|
2016-12-29 00:03:58 +01:00
|
|
|
uint8_t effectCurrent = 0;
|
|
|
|
uint8_t effectSpeed = 75;
|
2016-11-27 22:37:51 +01:00
|
|
|
boolean udpConnected = false;
|
2017-02-21 23:13:05 +01:00
|
|
|
byte udpIn[MAXDIRECT*4+2];
|
2017-02-07 14:24:42 +01:00
|
|
|
//NTP stuff
|
2017-02-07 16:02:27 +01:00
|
|
|
boolean ntpConnected = false;
|
|
|
|
unsigned int ntpLocalPort = 2390;
|
|
|
|
const int NTP_PACKET_SIZE = 48;
|
|
|
|
byte ntpPacketBuffer[NTP_PACKET_SIZE];
|
|
|
|
unsigned long ntpLastSyncTime = 999000000L;
|
|
|
|
unsigned long ntpPacketSentTime = 999000000L;
|
|
|
|
const unsigned long seventyYears = 2208988800UL;
|
2017-02-07 14:24:42 +01:00
|
|
|
|
|
|
|
//overlay stuff
|
2017-09-18 10:20:04 +02:00
|
|
|
uint8_t overlayDefault = 0;
|
2017-01-15 00:24:28 +01:00
|
|
|
uint8_t overlayCurrent = 0;
|
2017-09-18 10:20:04 +02:00
|
|
|
#ifdef USEOVERLAYS
|
2017-12-02 23:58:22 +01:00
|
|
|
int overlayMin = 0, overlayMax = 79;
|
2017-09-18 10:20:04 +02:00
|
|
|
int analogClock12pixel = 25;
|
|
|
|
boolean analogClockSecondsTrail = false;
|
|
|
|
boolean analogClock5MinuteMarks = true;
|
|
|
|
boolean nixieClockDisplaySeconds = false;
|
|
|
|
boolean nixieClock12HourFormat = false;
|
|
|
|
boolean overlayReverse = true;
|
|
|
|
uint8_t overlaySpeed = 200;
|
2016-12-31 00:38:51 +01:00
|
|
|
long overlayRefreshMs = 200;
|
2017-02-07 16:02:27 +01:00
|
|
|
unsigned long overlayRefreshedTime;
|
2016-12-31 17:36:07 +01:00
|
|
|
int overlayArr[6];
|
2016-12-31 21:10:33 +01:00
|
|
|
int overlayDur[6];
|
|
|
|
int overlayPauseDur[6];
|
|
|
|
int nixieClockI = -1;
|
|
|
|
boolean nixiePause;
|
2017-12-02 23:58:22 +01:00
|
|
|
unsigned long countdownTime = 1514764800L;
|
2017-09-18 10:20:04 +02:00
|
|
|
#endif
|
|
|
|
|
2017-02-04 22:17:28 +01:00
|
|
|
int arlsTimeoutMillis = 2500;
|
2017-01-26 23:45:55 +01:00
|
|
|
boolean arlsTimeout = false;
|
|
|
|
long arlsTimeoutTime;
|
2017-02-24 23:21:48 +01:00
|
|
|
boolean arlsSign = true;
|
2017-01-27 22:59:01 +01:00
|
|
|
uint8_t auxTime = 0;
|
2017-02-07 16:02:27 +01:00
|
|
|
unsigned long auxStartTime;
|
2017-01-27 22:59:01 +01:00
|
|
|
boolean auxActive, auxActiveBefore;
|
2016-10-25 22:11:04 +02:00
|
|
|
|
2017-11-20 00:07:37 +01:00
|
|
|
boolean useGammaCorrectionBri = false;
|
2017-09-18 10:20:04 +02:00
|
|
|
boolean useGammaCorrectionRGB = true;
|
|
|
|
int arlsOffset = -22; //10: -22 assuming arls52
|
|
|
|
boolean realtimeEnabled = true;
|
|
|
|
|
2017-02-21 23:59:47 +01:00
|
|
|
//alexa
|
|
|
|
Switch *alexa = NULL;
|
|
|
|
UpnpBroadcastResponder upnpBroadcastResponder;
|
|
|
|
|
2016-09-11 23:07:18 +02:00
|
|
|
ESP8266WebServer server(80);
|
2016-09-21 23:23:18 +02:00
|
|
|
ESP8266HTTPUpdateServer httpUpdater;
|
2016-11-27 22:37:51 +01:00
|
|
|
WiFiUDP notifierUdp;
|
2017-02-07 16:02:27 +01:00
|
|
|
WiFiUDP ntpUdp;
|
2016-09-21 23:23:18 +02:00
|
|
|
|
2017-09-18 12:24:31 +02:00
|
|
|
WS2812FX strip = WS2812FX(LEDCOUNT);
|
2016-12-14 23:40:47 +01:00
|
|
|
|
2017-05-15 12:24:59 +02:00
|
|
|
#ifdef USEFS
|
2016-09-11 23:07:18 +02:00
|
|
|
File fsUploadFile;
|
2017-05-15 12:24:59 +02:00
|
|
|
#endif
|
2016-09-11 23:07:18 +02:00
|
|
|
|
2017-01-15 00:24:28 +01:00
|
|
|
#ifdef DEBUG
|
2017-03-20 19:56:07 +01:00
|
|
|
long debugTime = 0;
|
2017-01-15 00:24:28 +01:00
|
|
|
int lastWifiState = 3;
|
|
|
|
long wifiStateChangedTime = 0;
|
|
|
|
#endif
|
|
|
|
|
2017-02-01 19:25:36 +01:00
|
|
|
const uint8_t gamma8[] = {
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5,
|
|
|
|
5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10,
|
|
|
|
10, 10, 11, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16,
|
|
|
|
17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 24, 24, 25,
|
|
|
|
25, 26, 27, 27, 28, 29, 29, 30, 31, 32, 32, 33, 34, 35, 35, 36,
|
|
|
|
37, 38, 39, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 50,
|
|
|
|
51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68,
|
|
|
|
69, 70, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89,
|
|
|
|
90, 92, 93, 95, 96, 98, 99,101,102,104,105,107,109,110,112,114,
|
|
|
|
115,117,119,120,122,124,126,127,129,131,133,135,137,138,140,142,
|
|
|
|
144,146,148,150,152,154,156,158,160,162,164,167,169,171,173,175,
|
|
|
|
177,180,182,184,186,189,191,193,196,198,200,203,205,208,210,213,
|
|
|
|
215,218,220,223,225,228,231,233,236,239,241,244,247,249,252,255 };
|
|
|
|
|
2016-09-11 23:07:18 +02:00
|
|
|
void down()
|
|
|
|
{
|
2016-10-25 22:11:04 +02:00
|
|
|
bri_t = 0;
|
|
|
|
setAllLeds();
|
2017-01-15 00:24:28 +01:00
|
|
|
DEBUG_PRINTLN("MODULE TERMINATED");
|
2016-09-11 23:07:18 +02:00
|
|
|
while (1) {delay(1000);}
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset()
|
|
|
|
{
|
2016-10-25 22:11:04 +02:00
|
|
|
bri_t = 0;
|
|
|
|
setAllLeds();
|
2017-01-15 00:24:28 +01:00
|
|
|
DEBUG_PRINTLN("MODULE RESET");
|
2016-09-11 23:07:18 +02:00
|
|
|
ESP.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setup() {
|
2016-11-19 19:39:17 +01:00
|
|
|
wledInit();
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
server.handleClient();
|
2016-11-27 22:37:51 +01:00
|
|
|
handleNotifications();
|
2016-10-25 22:11:04 +02:00
|
|
|
handleTransitions();
|
2016-11-19 19:12:57 +01:00
|
|
|
handleNightlight();
|
2017-05-15 12:24:59 +02:00
|
|
|
yield();
|
2016-10-30 20:04:39 +01:00
|
|
|
handleButton();
|
2016-12-29 00:03:58 +01:00
|
|
|
handleNetworkTime();
|
2017-09-18 10:20:04 +02:00
|
|
|
#ifdef USEOVERLAYS
|
2016-12-31 00:38:51 +01:00
|
|
|
handleOverlays();
|
2017-09-18 10:20:04 +02:00
|
|
|
#endif
|
2017-12-14 00:12:02 +01:00
|
|
|
#ifdef CRONIXIE
|
|
|
|
handleCronixie();
|
|
|
|
#endif
|
2017-02-21 23:59:47 +01:00
|
|
|
handleAlexa();
|
2016-12-14 23:40:47 +01:00
|
|
|
strip.service();
|
2017-01-15 00:24:28 +01:00
|
|
|
|
|
|
|
//DEBUG
|
|
|
|
#ifdef DEBUG
|
2017-03-20 19:56:07 +01:00
|
|
|
if (millis() - debugTime > 5000)
|
2017-01-15 00:24:28 +01:00
|
|
|
{
|
|
|
|
DEBUG_PRINTLN("---MODULE DEBUG INFO---");
|
|
|
|
DEBUG_PRINT("Runtime: "); DEBUG_PRINTLN(millis());
|
|
|
|
DEBUG_PRINT("Unix time: "); DEBUG_PRINTLN(now());
|
2017-02-07 13:00:33 +01:00
|
|
|
DEBUG_PRINT("Free heap: "); DEBUG_PRINTLN(ESP.getFreeHeap());
|
2017-01-15 00:24:28 +01:00
|
|
|
DEBUG_PRINT("Wifi state: "); DEBUG_PRINTLN(WiFi.status());
|
|
|
|
if (WiFi.status() != lastWifiState)
|
|
|
|
{
|
|
|
|
wifiStateChangedTime = millis();
|
|
|
|
}
|
|
|
|
lastWifiState = WiFi.status();
|
|
|
|
DEBUG_PRINT("Wifi state: "); DEBUG_PRINTLN(wifiStateChangedTime);
|
2017-02-07 16:02:27 +01:00
|
|
|
DEBUG_PRINT("NTP last sync: "); DEBUG_PRINTLN(ntpLastSyncTime);
|
2017-03-20 19:56:07 +01:00
|
|
|
DEBUG_PRINT("Client IP: "); DEBUG_PRINTLN(WiFi.localIP());
|
|
|
|
debugTime = millis();
|
2017-01-15 00:24:28 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|