16 Commits
v5.9 ... v6.3.1

Author SHA1 Message Date
ed1659791a Odstraneni HTML5 validatoru 2019-09-02 06:46:45 +02:00
60f106cef3 Merge branch 'feature/ipChange' of pablo2048/WiFiConfig into master 2019-08-28 12:55:44 +02:00
4590e99a54 Oprava chovani pri vynucene konfiguraci a pozadavku rychleho startu. Posun cisla verze v json 2019-08-12 11:04:01 +02:00
557d06a557 Zmena default ip adresy 2019-08-12 10:17:52 +02:00
f45d742435 Oprava demo prikladu. Funkcni i ve verzi core 2.4.2 2019-08-07 12:01:00 +02:00
3172bb0d17 Dalsi fixy v ESP32 casti 2019-01-06 11:00:45 +01:00
90618b0ae6 Undo zmena ip adresy - zatim to nepomohlo. Bugfix v ESP32 kodu. 2019-01-06 10:08:04 +01:00
7fec2df6b9 Zmena ip adresy na 10.1.1.1 kvuli Captive portalu 2018-12-21 07:43:11 +01:00
d0e01c567c Odstranena nepouzivana cast. Vse se zda byt funkcni. 2018-12-12 10:02:39 +01:00
48986510dd drobne zmeny v umisteni placeholderu 2018-12-12 09:18:58 +01:00
90da6a05e5 Verze 6.2 - pozor - zatim se nezobrazi ssid a heslo ve formulari 2018-12-12 08:52:50 +01:00
7a6f936a1a Sifrovani retezcu je nyni v externi knihovne. 2018-12-11 08:33:11 +01:00
3a8ffdcd01 Odstraneny zbytecny vypis timeoutu. 2018-11-20 16:57:26 +01:00
dc8aa8890d Reformatovani textu po zasahu VSC :-( 2018-11-20 16:53:18 +01:00
81ceb9aca9 Prvni verze s podporou ESP32 2018-11-20 16:40:15 +01:00
33f8f6a8b8 BugFix v _storeString (zapis za povolenou oblast) 2018-07-24 12:48:43 +02:00
8 changed files with 578 additions and 493 deletions

View File

@ -2,4 +2,4 @@
![Screenshot](doc/images/Screenshot_20180507-100906.png) ![Screenshot](doc/images/Screenshot_20180507-100906.png)
Knihovna pro konfiguraci WiFi rozhraní modulu ESP8266 Knihovna pro konfiguraci WiFi rozhraní modulu ESP8266 a ESP32, obsahující Captive portal.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -4,6 +4,7 @@
#include <EEPROM.h> #include <EEPROM.h>
#include <ESP8266NetBIOS.h> #include <ESP8266NetBIOS.h>
#include <WiFiConfig.h> #include <WiFiConfig.h>
#include <encipheredEEPROMStrings.h>
// Plati pro desticku Witty s modulem ESP-12E // Plati pro desticku Witty s modulem ESP-12E
#define PIN_FORCE_CONFIG 4 #define PIN_FORCE_CONFIG 4
@ -14,6 +15,19 @@
//#define DEBUG_OUT(a) {} //#define DEBUG_OUT(a) {}
#define DEBUG_OUT(a) Serial.print(a) #define DEBUG_OUT(a) Serial.print(a)
// Definice obsazeni EEPROM
#define elementSize(type, element) sizeof(((type *)0)->element)
#define countof(a) (sizeof(a) / sizeof(a[0]))
typedef struct
{
char devname[32 + 2]; // jmeno zarizeni (pro NBNS plati jen 16 znaku)
} eepromconfig_t;
#define EEPROM_SIZE (sizeof(wificonfigarea_t) + sizeof(eepromconfig_t) + 10) // velikost EEPROM oblasti (POZOR!!! zbytecnym zvetsovanim se zaroven zmensuje velikost RAM kvuli zrcadlu!!!)
#define EEPROM_WIFICONFIG_ORIGIN (EEPROM_SIZE - sizeof(wificonfigarea_t)) // pocatek oblasti, pouzivane WiFiConfig (alokovano odzadu)
#define EEPROM_CONFIG_ORIGIN (0)
char WiFiDeviceName[elementSize(eepromconfig_t, devname)]; // misto pro jmeno zarizeni (dodane do DNS, DHCP NBNS apod...)
ESP8266WebServer wwwserver(80); // webovy server ESP8266WebServer wwwserver(80); // webovy server
String content; String content;
@ -52,23 +66,27 @@ void ICACHE_FLASH_ATTR wcb(wificonfigstate_t state)
} }
} }
void saveServer(const char *param) void ICACHE_FLASH_ATTR saveDevname(const char *param)
{ {
String p = param;
DEBUG_OUT(param); EES_storeString(EEPROM_CONFIG_ORIGIN + offsetof(eepromconfig_t, devname), elementSize(eepromconfig_t, devname), p);
} }
void ICACHE_FLASH_ATTR setup() void ICACHE_FLASH_ATTR setup()
{ {
WiFiConfig wifi; // konfigurace ESP modulu WiFiConfig wifi; // konfigurace ESP modulu
WiFiConfigUsrParameter testOnly("server", "adresa serveru", "Default server", 32, saveServer); WiFiConfigUsrParameter devname("devname", "Jméno zařízení", (const char *)WiFiDeviceName, 32, saveDevname);
EEPROM.begin(512); // zahajujeme praci s EEPROM EEPROM.begin(EEPROM_SIZE); // zahajujeme praci s EEPROM
pinMode(PIN_FORCE_CONFIG, INPUT_PULLUP); // pin, co slouzi jako vstup tlacitka pinMode(PIN_FORCE_CONFIG, INPUT_PULLUP); // pin, co slouzi jako vstup tlacitka
int fc = digitalRead(PIN_FORCE_CONFIG); // pozadavek na vynucene vyvolani konfigurace int fc = digitalRead(PIN_FORCE_CONFIG); // pozadavek na vynucene vyvolani konfigurace
Serial.begin(9600); Serial.begin(9600);
wifi.addParameter(&testOnly); String dn = EES_readString(EEPROM_CONFIG_ORIGIN + offsetof(eepromconfig_t, devname), elementSize(eepromconfig_t, devname));
if (WCR_OK != wifi.begin(0, fc, wcb)) // startujeme pripojeni strcpy(WiFiDeviceName, dn.c_str());
wifi.addParameter(&devname);
if (WCR_OK != wifi.begin(EEPROM_WIFICONFIG_ORIGIN, fc, wcb)) // startujeme pripojeni
ESP.restart(); ESP.restart();
wwwserver.on("/", handleRoot); wwwserver.on("/", handleRoot);

View File

@ -1,6 +1,6 @@
{ {
"name":"WiFiConfig", "name":"WiFiConfig",
"description":"Web based WiFi part configuration for the ESP8266 SoC", "description":"Web based WiFi part configuration for the ESP8266 and ESP32 SoC",
"keywords":"wifi, configuration", "keywords":"wifi, configuration",
"authors": "authors":
{ {
@ -12,10 +12,10 @@
"type": "git", "type": "git",
"url": "http://git.xpablo.cz/pablo2048/WiFiConfig.git" "url": "http://git.xpablo.cz/pablo2048/WiFiConfig.git"
}, },
"version": "5.9", "version": "6.3.1",
"license": "MIT", "license": "MIT",
"frameworks": "arduino", "frameworks": "arduino",
"platforms": "espressif8266", "platforms": ["espressif8266", "espressif32"],
"build": { "build": {
"libCompatMode": 2 "libCompatMode": 2
} }

View File

@ -1,9 +1,9 @@
name=WiFiConfig name=WiFiConfig
version=5.9 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.
paragraph=With this library you can enable your ESP8266 module to be configured over WiFi. Includes Captive Portal for easy configuration. paragraph=With this library you can enable your ESP8266 or ESP32 module to be configured over WiFi. Includes Captive Portal for easy configuration.
category=Other category=Other
url=http://www.xpablo.cz url=http://www.xpablo.cz
architectures=esp8266 architectures=esp8266,esp32

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,11 @@
#ifndef __WiFiConfig_h__ #ifndef __WiFiConfig_h__
#define __WiFiConfig_h__ #define __WiFiConfig_h__
#include <ESP8266WiFi.h> #if defined(ESP8266)
#include <ESP8266WiFi.h>
#else
#include <WiFi.h>
#endif
#include <memory> #include <memory>
#define elementSize(type, element) sizeof(((type *)0)->element) #define elementSize(type, element) sizeof(((type *)0)->element)
@ -44,7 +48,6 @@ typedef struct
uint8_t ip; // konfigurace ip (staticka/DHCP) uint8_t ip; // konfigurace ip (staticka/DHCP)
char ssid[32 + 2]; // SSID site char ssid[32 + 2]; // SSID site
char pass[64 + 2]; // heslo char pass[64 + 2]; // heslo
char devname[32 + 2]; // jmeno zarizeni (pro NBNS plati jen 16 znaku)
uint32_t ipaddr; // ip adresa v pripade staticke konfigurace uint32_t ipaddr; // ip adresa v pripade staticke konfigurace
uint32_t netmask; // sitova maska v pripade staticke konfigurace uint32_t netmask; // sitova maska v pripade staticke konfigurace
uint32_t gateway; // sitova brana v pripade staticke konfigurace uint32_t gateway; // sitova brana v pripade staticke konfigurace
@ -139,8 +142,6 @@ uint32_t getEEPROMuint32(int start);
*/ */
void setEEPROMuint32(int start, uint32_t val); void setEEPROMuint32(int start, uint32_t val);
extern char WiFiDeviceName[]; // jmeno zarizeni, pouzivane i pro DHCP
class WiFiConfigUsrParameter class WiFiConfigUsrParameter
{ {
public: public:
@ -169,8 +170,8 @@ class WiFiConfig
{ {
public: public:
WiFiConfig(): _params(NULL), _timeout(0) {} WiFiConfig(): _params(NULL), _timeout(0) {}
wificonfigresult_t begin(int configarea, uint8_t forceConfigure, wificonfig_cb cb); wificonfigresult_t begin(int configarea, int forceConfigure, wificonfig_cb cb);
wificonfigresult_t begin(int configarea, uint8_t forceConfigure, int timeout, wificonfig_cb cb); wificonfigresult_t begin(int configarea, int forceConfigure, int timeout, wificonfig_cb cb);
void addParameter(WiFiConfigUsrParameter *p); void addParameter(WiFiConfigUsrParameter *p);
private: private:
wificonfigresult_t _setupAP(wificonfig_cb cb); wificonfigresult_t _setupAP(wificonfig_cb cb);

View File

@ -37,7 +37,6 @@ static const char SSID_ITEM[] PROGMEM = R"=====(
/* Zacatek formulare pro vyplneni /* Zacatek formulare pro vyplneni
{s} - SSID {s} - SSID
{p} - password {p} - password
{n} - Netbios name
{a} - AP mode (checkbox) {a} - AP mode (checkbox)
{ch}- cislo kanalu AP {ch}- cislo kanalu AP
{c} - staticka IP konfigurace (checkbox) {c} - staticka IP konfigurace (checkbox)
@ -48,9 +47,8 @@ static const char SSID_ITEM[] PROGMEM = R"=====(
*/ */
static const char PAGE_INDEX2[] PROGMEM = R"=====( static const char PAGE_INDEX2[] PROGMEM = R"=====(
<form method='post' action='s'> <form method='post' action='s'>
<label>SSID<br><input id='_s' name='_s' maxlength=32 required {s}></label><br> <label>SSID<br><input id='_s' name='_s' maxlength=32 required placeholder='SSID' {s}></label><br>
<label>Heslo<br><input id='_p' name='_p' maxlength=64 {p} type='password'></label><br> <label>Heslo<br><input id='_p' name='_p' maxlength=64 {p} type='password' placeholder='heslo'></label><br>
<label>Jméno zařízení<br><input name='_n' maxlength=32 pattern='^[a-zA-Z][a-zA-Z0-9-_\\.]{1,32}$' title='Jméno dle NetBios konvence (max. 16 znaků písmena, čísla a znaky "_.")' {n}></label><br>
<div> <div>
<label><input id='_a' name='_a' type='checkbox' style="width: 10%; float: left; margin-top: 5px;" onclick='hAP();' {a}>Režim AP</label> <label><input id='_a' name='_a' type='checkbox' style="width: 10%; float: left; margin-top: 5px;" onclick='hAP();' {a}>Režim AP</label>
<div id="apconfig"> <div id="apconfig">
@ -58,12 +56,12 @@ static const char PAGE_INDEX2[] PROGMEM = R"=====(
</div> </div>
</div> </div>
<div> <div>
<label><input id='_st' name='_st' type='checkbox' style="width: 10%; float: left; margin-top: 5px;" onclick='hSC();' {c}>Staticka 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>