Compare commits
7 Commits
f45d742435
...
6.3.2
Author | SHA1 | Date | |
---|---|---|---|
52648c8915 | |||
e66a3306f1 | |||
4033637b82 | |||
ed1659791a | |||
60f106cef3 | |||
4590e99a54 | |||
557d06a557 |
@@ -12,7 +12,7 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "http://git.xpablo.cz/pablo2048/WiFiConfig.git"
|
"url": "http://git.xpablo.cz/pablo2048/WiFiConfig.git"
|
||||||
},
|
},
|
||||||
"version": "6.0",
|
"version": "6.3.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"frameworks": "arduino",
|
"frameworks": "arduino",
|
||||||
"platforms": ["espressif8266", "espressif32"],
|
"platforms": ["espressif8266", "espressif32"],
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
name=WiFiConfig
|
name=WiFiConfig
|
||||||
version=6.0
|
version=6.3.1
|
||||||
author=Pavel Brychta
|
author=Pavel Brychta
|
||||||
maintainer=Pavel Brychta <Pablo@xpablo.cz>
|
maintainer=Pavel Brychta <Pablo@xpablo.cz>
|
||||||
sentence=Enables seamless module configuration.
|
sentence=Enables seamless module configuration.
|
||||||
|
@@ -1,4 +1,12 @@
|
|||||||
/*
|
/*
|
||||||
|
* v6.3.2- 4.10.2019 - Informace o aplikaci a jeji verzi do footeru, zrychlen restart z 10 na 5 sekund, vylepsena stranka pro reset
|
||||||
|
* verze pro ESP32 zobrazuje neco malo informaci o stavu pripojeni a duvodu vstupu do WifiConfig
|
||||||
|
*
|
||||||
|
* V6.3.1- 1.9.2019 - Odstraneni HTML5 validatoru - delaly akorat problemy a nedala se ulozit konfigurace i kdyz byly polozky skryty
|
||||||
|
*
|
||||||
|
* V6.3 - 12.8.2019 - IP adresa Captive portalu je zmenena na 172.217.28.1 kvuli funkcnosti na Android zarizenich (viz. zmena zde https://github.com/esp8266/Arduino/blob/master/libraries/DNSServer/examples/CaptivePortal/CaptivePortal.ino)
|
||||||
|
* ladici vypis pri zachyceni presmerovani v Captive portalu.
|
||||||
|
*
|
||||||
* V6.2 - 12.12.2018- Nastaveni jmena zarizeni nadale NENI soucasti WiFiConfig a je treba ho pridat jako uzivatelsky parametr. Je to proto, protoze
|
* V6.2 - 12.12.2018- Nastaveni jmena zarizeni nadale NENI soucasti WiFiConfig a je treba ho pridat jako uzivatelsky parametr. Je to proto, protoze
|
||||||
* se ukazalo, ze neni dobre z externiho kodu sahat do vnitrni struktury WiFiConfig (napr. pri ukladani noveho jmena).
|
* se ukazalo, ze neni dobre z externiho kodu sahat do vnitrni struktury WiFiConfig (napr. pri ukladani noveho jmena).
|
||||||
*
|
*
|
||||||
@@ -21,7 +29,7 @@
|
|||||||
*
|
*
|
||||||
* V5.3 - 8.12.2017 - prepracovano presmerovani v Captive portalu, DEBUG_MSG makro upraveno na posledni pouzivanou verzi, scitani retezcu prepracovano na .concat. Pripsany Informace o modulu, reakce na Reset
|
* V5.3 - 8.12.2017 - prepracovano presmerovani v Captive portalu, DEBUG_MSG makro upraveno na posledni pouzivanou verzi, scitani retezcu prepracovano na .concat. Pripsany Informace o modulu, reakce na Reset
|
||||||
*
|
*
|
||||||
* V5.2 - 20.4.2017 - Pokud je pouzite v timeoutu EC_DONT_RUN_CONFIGAP tak se vracime okamzite a necekame na pripojeni k WiFi (take nevolame zadnou callback metodu).
|
* V5.2 - 20.4.2017 - Pokud je pouzite v timeoutu WC_DONT_RUN_CONFIGAP tak se vracime okamzite a necekame na pripojeni k WiFi (take nevolame zadnou callback metodu).
|
||||||
* Navratovy kod je pak WCR_CONFIGAP_NOT_STARTED .
|
* Navratovy kod je pak WCR_CONFIGAP_NOT_STARTED .
|
||||||
*
|
*
|
||||||
* V5.1 - 3.4.2017 - Webove rozhrani upravene pro snadnejsi ovladani na telefonu/tabletu, sila signalu AP zobrazena jako barevne odliseny indikator.
|
* V5.1 - 3.4.2017 - Webove rozhrani upravene pro snadnejsi ovladani na telefonu/tabletu, sila signalu AP zobrazena jako barevne odliseny indikator.
|
||||||
@@ -79,6 +87,7 @@
|
|||||||
#include <ESP8266WebServer.h>
|
#include <ESP8266WebServer.h>
|
||||||
#else
|
#else
|
||||||
#include <WebServer.h>
|
#include <WebServer.h>
|
||||||
|
#include <rom/rtc.h> // duvod resetu (https://github.com/espressif/arduino-esp32/issues/449)
|
||||||
#endif
|
#endif
|
||||||
#include "WiFiConfig.h"
|
#include "WiFiConfig.h"
|
||||||
#include <EEPROM.h>
|
#include <EEPROM.h>
|
||||||
@@ -313,7 +322,13 @@ void WiFiConfig::_handleNotFound(void)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
server->sendHeader(F("Location"), String(F("http://")) + server->client().localIP().toString() + String(F("/index.htm")), true);
|
String redirect;
|
||||||
|
redirect.reserve(256);
|
||||||
|
redirect = F("http://");
|
||||||
|
redirect.concat(server->client().localIP().toString());
|
||||||
|
redirect.concat(F("/index.htm"));
|
||||||
|
DEBUG_MSG("Redirection to: %s\r\n", redirect.c_str());
|
||||||
|
server->sendHeader(F("Location"), redirect, true);
|
||||||
server->send_P(302, TEXTPLAIN, PSTR("Redirect"));
|
server->send_P(302, TEXTPLAIN, PSTR("Redirect"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -447,7 +462,24 @@ void WiFiConfig::_handleRoot(void)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
content.concat(F("Prozatím nedostupné"));
|
switch (_status)
|
||||||
|
{
|
||||||
|
case WL_CONNECT_FAILED:
|
||||||
|
content.concat(F("Připojení selhalo"));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0xfe:
|
||||||
|
content.concat(F("Špatná EEPROM"));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0xff:
|
||||||
|
content.concat(F("Vynucená konfigurace"));
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
content.concat(F("Neznámý"));
|
||||||
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
content.concat(F("</div>"));
|
content.concat(F("</div>"));
|
||||||
content.concat(FPSTR(PAGE_CAPTIVEPORTALCATCH2)); // 2. cast stranky (ukonceni)
|
content.concat(FPSTR(PAGE_CAPTIVEPORTALCATCH2)); // 2. cast stranky (ukonceni)
|
||||||
@@ -697,7 +729,7 @@ wificonfigresult_t WiFiConfig::_setupAP(wificonfig_cb cb)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Soft AP network parameters */
|
/* Soft AP network parameters */
|
||||||
IPAddress apIP(192, 168, 4, 1);
|
IPAddress apIP(172, 217, 28, 1);
|
||||||
IPAddress netMsk(255, 255, 255, 0);
|
IPAddress netMsk(255, 255, 255, 0);
|
||||||
|
|
||||||
WiFi.disconnect(); // pro jistotu se odpojime
|
WiFi.disconnect(); // pro jistotu se odpojime
|
||||||
@@ -912,6 +944,8 @@ wificonfigresult_t WiFiConfig::begin(int configarea, int forceConfigure, int tim
|
|||||||
|
|
||||||
if ((timeout > 0) && (40 > timeout))
|
if ((timeout > 0) && (40 > timeout))
|
||||||
timeout = 40; // timeout musi byt minimalne 40 sekund
|
timeout = 40; // timeout musi byt minimalne 40 sekund
|
||||||
|
if ((0 == forceConfigure) && (WC_DONT_RUN_CONFIGAP == timeout))
|
||||||
|
timeout = 40;
|
||||||
_timeout = timeout;
|
_timeout = timeout;
|
||||||
if (_timeout > 0)
|
if (_timeout > 0)
|
||||||
_time = millis() + (_timeout * 1000); // spocitame si novy cas, kdy budeme modul restartovat
|
_time = millis() + (_timeout * 1000); // spocitame si novy cas, kdy budeme modul restartovat
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
* @file WiFiConfig.h
|
* @file WiFiConfig.h
|
||||||
* @author Pavel Brychta, http://www.xpablo.cz
|
* @author Pavel Brychta, http://www.xpablo.cz
|
||||||
*
|
*
|
||||||
* Copyright (c) 2015-18 Pavel Brychta. All rights reserved.
|
* Copyright (c) 2015-19 Pavel Brychta. All rights reserved.
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
@@ -58,10 +58,10 @@ static const char PAGE_INDEX2[] PROGMEM = R"=====(
|
|||||||
<div>
|
<div>
|
||||||
<label><input id='_st' name='_st' type='checkbox' style="width: 10%; float: left; margin-top: 5px;" onclick='hSC();' {c}>Statická IP konfigurace</label>
|
<label><input id='_st' name='_st' type='checkbox' style="width: 10%; float: left; margin-top: 5px;" onclick='hSC();' {c}>Statická IP konfigurace</label>
|
||||||
<div id="staticip">
|
<div id="staticip">
|
||||||
<label>IP adresa<br><input type="text" name="_i" pattern='((^|\.)((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]?\d))){4}$' title='ip adresa ve formatu <cislo>.<cislo>.<cislo>.<cislo>' value='{i}'></label><br>
|
<label>IP adresa<br><input type="text" name="_i" value='{i}'></label><br>
|
||||||
<label>Síťová maska<br><input type="text" name="_m" pattern='((^|\.)((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]?\d))){4}$' title='ip adresa ve formatu <cislo>.<cislo>.<cislo>.<cislo>' value='{m}'></label><br>
|
<label>Síťová maska<br><input type="text" name="_m" value='{m}'></label><br>
|
||||||
<label>Síťová brána<br><input type="text" name="_g" pattern='((^|\.)((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]?\d))){4}$' title='ip adresa ve formatu <cislo>.<cislo>.<cislo>.<cislo>' value='{g}'></label><br>
|
<label>Síťová brána<br><input type="text" name="_g" value='{g}'></label><br>
|
||||||
<label>Server DNS<br><input type="text" name="_d" pattern='((^|\.)((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]?\d))){4}$' title='ip adresa ve formatu <cislo>.<cislo>.<cislo>.<cislo>' value='{d}'></label><br>
|
<label>Server DNS<br><input type="text" name="_d" value='{d}'></label><br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>hAP();hSC();</script>
|
<script>hAP();hSC();</script>
|
||||||
@@ -81,9 +81,22 @@ static const char PAGE_PARAM[] PROGMEM = R"=====(
|
|||||||
static const char PAGE_END[] PROGMEM = R"=====(
|
static const char PAGE_END[] PROGMEM = R"=====(
|
||||||
<br>
|
<br>
|
||||||
<button type='submit'>Uložit a restartovat</button></form>
|
<button type='submit'>Uložit a restartovat</button></form>
|
||||||
</div></body></html>
|
</div>)====="
|
||||||
|
#if defined APP_NAME && defined APP_VERSION
|
||||||
|
R"=====(<div style='text-align:right;font-size:11px;'><hr/>)====="
|
||||||
|
APP_NAME
|
||||||
|
" v"
|
||||||
|
APP_VERSION
|
||||||
|
R"=====(</div>
|
||||||
|
)====="
|
||||||
|
#else
|
||||||
|
R"=====(<div style='text-align:right;font-size:11px;'><hr/><a href='http://xpablo.cz' target='_blank' style='color:#aaa;'>WiFiConfig by xPablo</a></div>)====="
|
||||||
|
#endif
|
||||||
|
R"=====(</body></html>
|
||||||
)=====";
|
)=====";
|
||||||
|
/*
|
||||||
|
<div style='text-align:right;font-size:11px;'><hr/><a href='http://xpablo.cz' target='_blank' style='color:#aaa;'>WiFiConfig by xPablo</a></div>
|
||||||
|
*/
|
||||||
// Nenalezeno zadne SSID
|
// Nenalezeno zadne SSID
|
||||||
static const char PAGE_NO_SSID[] PROGMEM = R"=====(
|
static const char PAGE_NO_SSID[] PROGMEM = R"=====(
|
||||||
<div>Nenalezená žádná síť. Občerstvi stránku pro nové hledání.</div>
|
<div>Nenalezená žádná síť. Občerstvi stránku pro nové hledání.</div>
|
||||||
@@ -91,13 +104,13 @@ static const char PAGE_NO_SSID[] PROGMEM = R"=====(
|
|||||||
|
|
||||||
// Konfigurace ulozena - restartuji...
|
// Konfigurace ulozena - restartuji...
|
||||||
static const char PAGE_SAVED[] PROGMEM = R"=====(
|
static const char PAGE_SAVED[] PROGMEM = R"=====(
|
||||||
<!DOCTYPE html><html lang="cs"><head><meta http-equiv="refresh" content="10;url=/"/>
|
<!DOCTYPE html><html lang="cs"><head><meta http-equiv="refresh" content="5;url=/"/>
|
||||||
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<title>xPablo Setup - Konfigurace uložena</title>
|
<title>xPablo Setup - Konfigurace uložena</title>
|
||||||
<style>div,input {margin-bottom: 5px;}body{width:200px;display:block;margin-left:auto;margin-right:auto;}</style>
|
<style>div,input {margin-bottom: 5px;}body{width:200px;display:block;margin-left:auto;margin-right:auto;}</style>
|
||||||
</head><body>
|
</head><body>
|
||||||
Uloženo do EEPROM...<br/>
|
Uloženo do EEPROM...<br/>
|
||||||
Restart za 10 sekund.
|
Restart za 5 sekund.
|
||||||
</body></html>
|
</body></html>
|
||||||
)=====";
|
)=====";
|
||||||
|
|
||||||
@@ -111,11 +124,29 @@ static const char PAGE_CAPTIVEPORTALCATCH[] PROGMEM = R"=====(
|
|||||||
<form action="/config" method="get"><button>Konfigurace WiFi</button></form><br/><form action="/i" method="get"><button>Informace o modulu</button></form><br/><form action="/r" method="post"><button class="red">Reset</button></form><br>
|
<form action="/config" method="get"><button>Konfigurace WiFi</button></form><br/><form action="/i" method="get"><button>Informace o modulu</button></form><br/><form action="/r" method="post"><button class="red">Reset</button></form><br>
|
||||||
)=====";
|
)=====";
|
||||||
|
|
||||||
// druha cast (mezi 1. a druhou cast muzeme doplnit dodatecne informace)
|
// druha cast (mezi 1. a 2. cast muzeme doplnit dodatecne informace)
|
||||||
static const char PAGE_CAPTIVEPORTALCATCH2[] PROGMEM = R"=====(
|
static const char PAGE_CAPTIVEPORTALCATCH2[] PROGMEM = R"=====(
|
||||||
</div></body></html>
|
</div>
|
||||||
|
)====="
|
||||||
|
#if defined APP_NAME && defined APP_VERSION
|
||||||
|
R"=====(<div style='text-align:right;font-size:11px;'><hr/>)====="
|
||||||
|
APP_NAME
|
||||||
|
" v"
|
||||||
|
APP_VERSION
|
||||||
|
R"=====(</div>
|
||||||
|
)====="
|
||||||
|
#else
|
||||||
|
R"=====(<div style='text-align:right;font-size:11px;'><hr/><a href='http://xpablo.cz' target='_blank' style='color:#aaa;'>WiFiConfig by xPablo</a></div>)====="
|
||||||
|
#endif
|
||||||
|
R"=====(</body></html>
|
||||||
)=====";
|
)=====";
|
||||||
|
|
||||||
static const char PAGE_RESTART[] PROGMEM = R"=====(
|
static const char PAGE_RESTART[] PROGMEM = R"=====(
|
||||||
Restartuji...
|
<!DOCTYPE html><html lang="cs"><head><meta http-equiv="refresh" content="5;url=/"/>
|
||||||
|
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>xPablo Setup - Restart</title>
|
||||||
|
<style>div,input {margin-bottom: 5px;}body{width:200px;display:block;margin-left:auto;margin-right:auto;}</style>
|
||||||
|
</head><body>
|
||||||
|
Restartuji...
|
||||||
|
</body></html>
|
||||||
)=====";
|
)=====";
|
||||||
|
Reference in New Issue
Block a user