Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit d1436e7

Browse files
authored
v1.7.8 to permit using HTTP port different from 80
### Releases v1.7.8 1. To permit using HTTP port different from 80. Check [WiFiManager works only on port 80 #75](khoih-prog/ESPAsync_WiFiManager#75) 2. Fix bug returning IP `255.255.255.255` in core v2.0.0+ when using `hostname`
1 parent 8e4d8a7 commit d1436e7

31 files changed

+276
-70
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.16
3030
ESP8266 Core Version 3.0.2
3131
OS: Ubuntu 20.04 LTS
32-
Linux Inspiron 5.4.0-90-generic #101-Ubuntu SMP Fri Oct 15 20:00:55 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux Inspiron 5.4.0-91-generic #102-Ubuntu SMP Fri Nov 5 16:31:28 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered an endless loop while trying to connect to Local WiFi.

README.md

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2124,7 +2124,7 @@ ESP_wifiManager.setRemoveDuplicateAPs(false);
21242124
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
21252125
#endif
21262126

2127-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.7"
2127+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.8"
21282128

21292129
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
21302130
#define _WIFIMGR_LOGLEVEL_ 3
@@ -2460,6 +2460,9 @@ IPAddress APStaticIP = IPAddress(192, 168, 100, 1);
24602460
IPAddress APStaticGW = IPAddress(192, 168, 100, 1);
24612461
IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
24622462

2463+
// Must be placed before #include <ESP_WiFiManager.h>, or default port 80 will be used
2464+
//#define HTTP_PORT 8080
2465+
24632466
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
24642467

24652468
#define HTTP_PORT 80
@@ -2785,10 +2788,10 @@ bool loadConfigData()
27852788
File file = FileFS.open(CONFIG_FILENAME, "r");
27862789
LOGERROR(F("LoadWiFiCfgFile "));
27872790

2788-
memset((void*) &WM_config, 0, sizeof(WM_config));
2791+
memset((void *) &WM_config, 0, sizeof(WM_config));
27892792

27902793
// New in v1.4.0
2791-
memset((void*) &WM_STA_IPconfig, 0, sizeof(WM_STA_IPconfig));
2794+
memset((void *) &WM_STA_IPconfig, 0, sizeof(WM_STA_IPconfig));
27922795
//////
27932796

27942797
if (file)
@@ -3027,6 +3030,10 @@ void wifi_manager()
30273030
Serial.print(F("192.168.4.1"));
30283031
#endif
30293032

3033+
#if defined(HTTP_PORT_TO_USE)
3034+
Serial.print(F(":")); Serial.print(HTTP_PORT_TO_USE);
3035+
#endif
3036+
30303037
Serial.print(F(", SSID = "));
30313038
Serial.print(ssid);
30323039
Serial.print(F(", PWD = "));
@@ -3483,7 +3490,7 @@ This is terminal debug output when running [ConfigOnSwitchFS_MQTT_Ptr](examples/
34833490
34843491
```
34853492
Starting ConfigOnSwichFS_MQTT_Ptr using LittleFS on ESP8266_NODEMCU_ESP12E
3486-
ESP_WiFiManager v1.7.7
3493+
ESP_WiFiManager v1.7.8
34873494
Configuration file not found
34883495
Failed to read configuration file, using default values
34893496
[WM] RFC925 Hostname = ConfigOnSwichFS-MQTT
@@ -3595,7 +3602,7 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](examples/ESP3
35953602
35963603
```cpp
35973604
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using SPIFFS on ESP32_DEV
3598-
ESP_WiFiManager v1.7.7
3605+
ESP_WiFiManager v1.7.8
35993606
ESP_DoubleResetDetector v1.2.1
36003607
FS File: /ConfigSW.json, size: 150B
36013608
FS File: /CanadaFlag_1.png, size: 40.25KB
@@ -3660,7 +3667,7 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](examples/ESP3
36603667

36613668
```
36623669
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using LittleFS on ESP32_DEV
3663-
ESP_WiFiManager v1.7.7
3670+
ESP_WiFiManager v1.7.8
36643671
ESP_DoubleResetDetector v1.2.1
36653672
FS File: /CanadaFlag_1.png, size: 40.25KB
36663673
FS File: /CanadaFlag_2.png, size: 8.12KB
@@ -3719,7 +3726,7 @@ This is terminal debug output when running [ConfigOnDRD_FS_MQTT_Ptr_Complex](exa
37193726

37203727
```
37213728
Starting ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP32_DEV
3722-
ESP_WiFiManager v1.7.7
3729+
ESP_WiFiManager v1.7.8
37233730
ESP_DoubleResetDetector v1.2.1
37243731
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
37253732
Config File successfully parsed
@@ -3762,7 +3769,7 @@ WWWW WTWWWW WWTWWW WWWTWW WWWWTW WWWWW
37623769

37633770
```
37643771
Starting ConfigOnDRD_FS_MQTT_Ptr_Complex using LittleFS on ESP32_DEV
3765-
ESP_WiFiManager v1.7.7
3772+
ESP_WiFiManager v1.7.8
37663773
ESP_DoubleResetDetector v1.2.1
37673774
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
37683775
Config File successfully parsed
@@ -3847,7 +3854,7 @@ This is terminal debug output when running [ConfigOnDRD_FS_MQTT_Ptr_Complex](exa
38473854

38483855
```
38493856
Starting ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP8266_NODEMCU_ESP12E
3850-
ESP_WiFiManager v1.7.7
3857+
ESP_WiFiManager v1.7.8
38513858
ESP_DoubleResetDetector v1.2.1
38523859
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
38533860
Config File successfully parsed
@@ -3887,7 +3894,7 @@ TWWWW WTWWWW WWTWWW WWWTWW WWWWTW WWWWW
38873894

38883895
```
38893896
Starting ConfigOnDRD_FS_MQTT_Ptr_Medium using LittleFS on ESP8266_NODEMCU_ESP12E
3890-
ESP_WiFiManager v1.7.7
3897+
ESP_WiFiManager v1.7.8
38913898
ESP_DoubleResetDetector v1.2.1
38923899
{"AIO_KEY_Label":"aio_key","AIO_SERVER_Label":"io.adafruit.com","AIO_SERVERPORT_Label":"1883","AIO_USERNAME_Label":"user_name"}
38933900
Config File successfully parsed
@@ -3964,7 +3971,7 @@ This is terminal debug output when running [ConfigOnDoubleReset](examples/Config
39643971

39653972
```
39663973
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32S2_DEV
3967-
ESP_WiFiManager v1.7.7
3974+
ESP_WiFiManager v1.7.8
39683975
ESP_DoubleResetDetector v1.2.1
39693976
[WM] RFC925 Hostname = ConfigOnDoubleReset
39703977
[WM] setAPStaticIPConfig
@@ -4014,7 +4021,7 @@ This is terminal debug output when running [ConfigOnDoubleReset](examples/Config
40144021

40154022
```
40164023
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32_DEV
4017-
ESP_WiFiManager v1.7.7
4024+
ESP_WiFiManager v1.7.8
40184025
ESP_DoubleResetDetector v1.2.1
40194026
[WM] RFC925 Hostname = ConfigOnDoubleReset
40204027
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4033,7 +4040,7 @@ doubleResetDetected
40334040
Saving config file...
40344041
Saving config file OK
40354042
Open Config Portal without Timeout: Double Reset Detected
4036-
Starting configuration portal @ 192.168.4.1, SSID = ESP_9ABF498, PWD = MyESP_9ABF498
4043+
Starting configuration portal @ 192.168.4.1:80, SSID = ESP_9ABF498, PWD = MyESP_9ABF498
40374044
```
40384045

40394046
#### 7.2 Data Saved => Connect to WiFi with correct local time, TZ set and using NTP
@@ -4124,7 +4131,7 @@ Local Date/Time: Thu May 6 21:29:18 2021
41244131

41254132
```
41264133
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32_DEV
4127-
ESP_WiFiManager v1.7.7
4134+
ESP_WiFiManager v1.7.8
41284135
ESP_DoubleResetDetector v1.2.1
41294136
[WM] RFC925 Hostname = ConfigOnDoubleReset
41304137
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4175,7 +4182,7 @@ This is terminal debug output when running [ConfigOnDoubleReset](examples/Config
41754182

41764183
```
41774184
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32S2_DEV
4178-
ESP_WiFiManager v1.7.7
4185+
ESP_WiFiManager v1.7.8
41794186
ESP_DoubleResetDetector v1.2.1
41804187
[WM] RFC925 Hostname = ConfigOnDoubleReset
41814188
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4190,7 +4197,7 @@ LittleFS Flag read = 0xD0D04321
41904197
No doubleResetDetected
41914198
Saving config file...
41924199
Saving config file OK
4193-
Starting configuration portal @ 192.168.4.1, SSID = ESP_8A1DF7C, PWD = MyESP_8A1DF7C
4200+
Starting configuration portal @ 192.168.4.1:80, SSID = ESP_8A1DF7C, PWD = MyESP_8A1DF7C
41944201
```
41954202

41964203
#### 8.2 Data Saved => Connect to WiFi with correct local time, TZ set and using NTP
@@ -4321,7 +4328,7 @@ Local Date/Time: Thu May 6 21:29:18 2021
43214328

43224329
```
43234330
Starting ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP32S2_DEV
4324-
ESP_WiFiManager v1.7.7
4331+
ESP_WiFiManager v1.7.8
43254332
ESP_DoubleResetDetector v1.2.1
43264333
[WM] RFC925 Hostname = ConfigOnDoubleReset
43274334
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -4374,7 +4381,7 @@ This is terminal debug output when running [ESP32_FSWebServer_DRD](examples/ESP3
43744381

43754382
```
43764383
Starting ESP32_FSWebServer_DRD with DoubleResetDetect using SPIFFS on ESP32C3_DEV
4377-
ESP_WiFiManager v1.7.7
4384+
ESP_WiFiManager v1.7.8
43784385
ESP_DoubleResetDetector v1.2.1
43794386
FS File: wm_cp.dat, size: 4B
43804387
FS File: wm_cp.bak, size: 4B
@@ -4496,7 +4503,7 @@ Submit issues to: [ESP_WiFiManager issues](https://github.com/khoih-prog/ESP_WiF
44964503
14. Thanks to [Stephen Lavelle](https://github.com/increpare) and [Ben Peart](https://github.com/benpeart) for requesting enhancement in [_timezoneName never getting set? #51](https://github.com/khoih-prog/ESP_WiFiManager/issues/51) and [How to retrieve timezone? #51](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/51) leading to new v1.7.0
44974504
15. Thanks to [energise](https://github.com/energise) to report the issue in [Invalid Json generated #60](https://github.com/khoih-prog/ESP_WiFiManager/issues/60) leading to new v1.7.1
44984505
16. Thanks to [eth0up](https://github.com/eth0up) to make the PR [Add support for Wifi hidden SSID scanning. #66](https://github.com/khoih-prog/ESP_WiFiManager/pull/66) leading to v1.7.4
4499-
4506+
17. Thanks to [Dean Ott](https://github.com/deanjott) for reporting [WiFiManager works only on port 80 #75](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/75) and providing the solution leading to v1.7.8
45004507

45014508
<table>
45024509
<tr>
@@ -4525,6 +4532,7 @@ Submit issues to: [ESP_WiFiManager issues](https://github.com/khoih-prog/ESP_WiF
45254532
</tr>
45264533
<tr>
45274534
<td align="center"><a href="https://github.com/eth0up"><img src="https://github.com/eth0up.png" width="100px;" alt="eth0up"/><br /><sub><b>eth0up</b></sub></a><br /></td>
4535+
<td align="center"><a href="https://github.com/deanjott"><img src="https://github.com/deanjott.png" width="100px;" alt="deanjott"/><br /><sub><b>Dean Ott</b></sub></a><br /></td>
45284536
</tr>
45294537
</table>
45304538

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
## Table of Contents
1414

1515
* [Changelog](#changelog)
16+
* [Releases v1.7.8](#releases-v178)
1617
* [Releases v1.7.7](#releases-v177)
1718
* [Releases v1.7.6](#releases-v176)
1819
* [Releases v1.7.5](#releases-v175)
@@ -48,6 +49,12 @@
4849

4950
## Changelog
5051

52+
### Releases v1.7.8
53+
54+
1. To permit using HTTP port different from 80. Check [WiFiManager works only on port 80 #75](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/75)
55+
2. Fix bug returning IP `255.255.255.255` in core v2.0.0+ when using `hostname`
56+
57+
5158
### Releases v1.7.7
5259

5360
1. Fix compile error for ESP32 core v1.0.5-

examples/AutoConnect/AutoConnect.ino

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
1616
#endif
1717

18-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.7"
18+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.8"
1919

2020
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
2121
#define _WIFIMGR_LOGLEVEL_ 3
@@ -246,6 +246,9 @@ IPAddress APStaticGW = IPAddress(192, 168, 100, 1);
246246
IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
247247
//////
248248

249+
// Must be placed before #include <ESP_WiFiManager.h>, or default port 80 will be used
250+
//#define HTTP_PORT 8080
251+
249252
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
250253

251254
// Function Prototypes
@@ -745,6 +748,10 @@ void setup()
745748
Serial.print(F("192.168.4.1"));
746749
#endif
747750

751+
#if defined(HTTP_PORT_TO_USE)
752+
Serial.print(F(":")); Serial.print(HTTP_PORT_TO_USE);
753+
#endif
754+
748755
Serial.print(F(", SSID = "));
749756
Serial.print(AP_SSID);
750757
Serial.print(F(", PWD = "));

examples/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
1616
#endif
1717

18-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.7"
18+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.8"
1919

2020
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
2121
#define _WIFIMGR_LOGLEVEL_ 3
@@ -257,6 +257,9 @@ IPAddress APStaticIP = IPAddress(192, 168, 100, 1);
257257
IPAddress APStaticGW = IPAddress(192, 168, 100, 1);
258258
IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
259259

260+
// Must be placed before #include <ESP_WiFiManager.h>, or default port 80 will be used
261+
//#define HTTP_PORT 8080
262+
260263
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
261264

262265
//define your default values here, if there are different values in configFileName (config.json), they are overwritten.
@@ -280,7 +283,7 @@ uint8_t connectMultiWiFi();
280283
///////////////////////////////////////////
281284
// New in v1.4.0
282285
/******************************************
283-
* // Defined in ESPAsync_WiFiManager.h
286+
* // Defined in ESP_WiFiManager.h
284287
typedef struct
285288
{
286289
IPAddress _ap_static_ip;
@@ -975,6 +978,10 @@ void setup()
975978
Serial.print(F("192.168.4.1"));
976979
#endif
977980

981+
#if defined(HTTP_PORT_TO_USE)
982+
Serial.print(F(":")); Serial.print(HTTP_PORT_TO_USE);
983+
#endif
984+
978985
Serial.print(F(", SSID = "));
979986
Serial.print(AP_SSID);
980987
Serial.print(F(", PWD = "));

examples/AutoConnectWithFeedback/AutoConnectWithFeedback.ino

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
1616
#endif
1717

18-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.7"
18+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.8"
1919

2020
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
2121
#define _WIFIMGR_LOGLEVEL_ 3
@@ -249,6 +249,9 @@ IPAddress APStaticIP = IPAddress(192, 168, 100, 1);
249249
IPAddress APStaticGW = IPAddress(192, 168, 100, 1);
250250
IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
251251

252+
// Must be placed before #include <ESP_WiFiManager.h>, or default port 80 will be used
253+
//#define HTTP_PORT 8080
254+
252255
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
253256

254257
// Function Prototypes
@@ -756,6 +759,10 @@ void setup()
756759
Serial.print(F("192.168.4.1"));
757760
#endif
758761

762+
#if defined(HTTP_PORT_TO_USE)
763+
Serial.print(F(":")); Serial.print(HTTP_PORT_TO_USE);
764+
#endif
765+
759766
Serial.print(F(", SSID = "));
760767
Serial.print(AP_SSID);
761768
Serial.print(F(", PWD = "));

examples/AutoConnectWithFeedbackLED/AutoConnectWithFeedbackLED.ino

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
1616
#endif
1717

18-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.7"
18+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.8"
1919

2020
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
2121
#define _WIFIMGR_LOGLEVEL_ 3
@@ -252,6 +252,9 @@ IPAddress APStaticIP = IPAddress(192, 168, 100, 1);
252252
IPAddress APStaticGW = IPAddress(192, 168, 100, 1);
253253
IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
254254

255+
// Must be placed before #include <ESP_WiFiManager.h>, or default port 80 will be used
256+
//#define HTTP_PORT 8080
257+
255258
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
256259

257260
//for LED status
@@ -788,6 +791,10 @@ void setup()
788791
Serial.print(F("192.168.4.1"));
789792
#endif
790793

794+
#if defined(HTTP_PORT_TO_USE)
795+
Serial.print(F(":")); Serial.print(HTTP_PORT_TO_USE);
796+
#endif
797+
791798
Serial.print(F(", SSID = "));
792799
Serial.print(AP_SSID);
793800
Serial.print(F(", PWD = "));

examples/ConfigOnDRD_FS_MQTT_Ptr/ConfigOnDRD_FS_MQTT_Ptr.ino

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
3232
#endif
3333

34-
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.7"
34+
#define ESP_WIFIMANAGER_VERSION_MIN_TARGET "ESP_WiFiManager v1.7.8"
3535

3636
// Use from 0 to 4. Higher number, more debugging messages and memory usage.
3737
#define _WIFIMGR_LOGLEVEL_ 3
@@ -367,6 +367,9 @@ IPAddress APStaticIP = IPAddress(192, 168, 100, 1);
367367
IPAddress APStaticGW = IPAddress(192, 168, 100, 1);
368368
IPAddress APStaticSN = IPAddress(255, 255, 255, 0);
369369

370+
// Must be placed before #include <ESP_WiFiManager.h>, or default port 80 will be used
371+
//#define HTTP_PORT 8080
372+
370373
#include <ESP_WiFiManager.h> //https://github.com/khoih-prog/ESP_WiFiManager
371374

372375
#define HTTP_PORT 80
@@ -934,6 +937,10 @@ void wifi_manager()
934937
Serial.print(F("192.168.4.1"));
935938
#endif
936939

940+
#if defined(HTTP_PORT_TO_USE)
941+
Serial.print(F(":")); Serial.print(HTTP_PORT_TO_USE);
942+
#endif
943+
937944
Serial.print(F(", SSID = "));
938945
Serial.print(ssid);
939946
Serial.print(F(", PWD = "));

0 commit comments

Comments
 (0)