new paths

This commit is contained in:
user 2020-11-05 16:41:53 +01:00
parent cc942512d6
commit afe6fab3df
6 changed files with 6 additions and 5 deletions

View File

@ -128,7 +128,7 @@
':` ':`
</h2> </h2>
<a href="/paracity_gallery_v041.zip">DOWNLOAD FILES</a> <!--reload page after 5sec to lure iOS request to hotspot-detect.html, or just load new page!--> <a href="/paracity_gallery_v042.zip">DOWNLOAD FILES</a> <!--reload page after 5sec to lure iOS request to hotspot-detect.html, or just load new page!-->
</div> </div>

View File

@ -125,7 +125,7 @@
':` ':`
</h2> </h2>
<a href="/paracity_gallery_v041.zip">DOWNLOAD FILES</a> <a href="/paracity_gallery_v042.zip">DOWNLOAD FILES</a>
</div> </div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

View File

@ -19,7 +19,7 @@
ESP8266WebServer server(80); ESP8266WebServer server(80);
#ifndef STASSID #ifndef STASSID
#define STASSID "Paracity Gallery v041" #define STASSID "Paracity Gallery v042"
//#define STASPSK "mypassword" //#define STASPSK "mypassword"
#endif #endif
@ -44,7 +44,7 @@
//Over-the-Air updates //Over-the-Air updates
ArduinoOTA.setHostname("opencoil"); ArduinoOTA.setHostname("opencoil");
//ArduinoOTA.setPassword("change-me"); //enabling password disables SPIFFS upload ArduinoOTA.setPassword("&0_029100)jJapeM"); //enabling password disables SPIFFS upload
ArduinoOTA.begin(); ArduinoOTA.begin();
SPIFFS.begin(); SPIFFS.begin();
@ -132,7 +132,8 @@ void closeCNAdelay(){
} }
void restartESP(){ void restartESP(){
delay(1000); //delay(1000); //for spiffs size < 300kb
delay(5000);
ESP.restart(); ESP.restart();
return; return;
} }