State before April rework
Attempted to fix NTP bug
This commit is contained in:
parent
3105f834b2
commit
624b3c3f16
6
TODO.txt
6
TODO.txt
@ -1,5 +1,4 @@
|
||||
captive portal for ap
|
||||
ntp bug
|
||||
simple slide transition
|
||||
additional color picker field
|
||||
implement HSB slider option
|
||||
@ -12,7 +11,6 @@ use iframe for settings, seperate tabs for wifi and application confg
|
||||
use iframe for all adv. features?
|
||||
/dumpeeprom and /pusheeprom (ota lock!)
|
||||
(aux trigger pin) partially impl.
|
||||
get NTP working
|
||||
audioWLED
|
||||
Broadcast
|
||||
Less traffic (distr. and scroll proc. on module)
|
||||
@ -47,5 +45,9 @@ var. brightness
|
||||
BUGS
|
||||
general forced reset (usually around 48h)
|
||||
NTP crash (1-48h)
|
||||
losing connectivity
|
||||
Nightlight function
|
||||
off after forced reset (system query?)
|
||||
udp notifier doesn't work all the time
|
||||
static ip disables mdns
|
||||
? authentification for security relevant areas ([/settings, /reset])
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "CallbackFunction.h"
|
||||
|
||||
//version in format yymmddb (b = daily build)
|
||||
#define VERSION 1703202
|
||||
#define VERSION 1703251
|
||||
|
||||
//to toggle usb serial debug (un)comment following line
|
||||
#define DEBUG
|
||||
@ -246,7 +246,6 @@ void loop() {
|
||||
#ifdef DEBUG
|
||||
if (millis() - debugTime > 5000)
|
||||
{
|
||||
debugIndex = 0;
|
||||
DEBUG_PRINTLN("---MODULE DEBUG INFO---");
|
||||
DEBUG_PRINT("Runtime: "); DEBUG_PRINTLN(millis());
|
||||
DEBUG_PRINT("Unix time: "); DEBUG_PRINTLN(now());
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
void handleNetworkTime()
|
||||
{
|
||||
if (ntpEnabled && ntpConnected && millis() - ntpLastSyncTime > 50000000L)
|
||||
if (ntpEnabled && ntpConnected && millis() - ntpLastSyncTime > 50000000L && WiFi.status() == WL_CONNECTED)
|
||||
{
|
||||
if (millis() - ntpPacketSentTime > 10000)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user