Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit 5c5bd20

Browse files
authored
v1.3.1 to fix bug with custom Blynk port on ESP32
### Releases v1.3.1 1. Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32. Check [Custom Blynk port not working for BlynkSimpleEsp32_Async_WM.h #4](khoih-prog/Blynk_Async_WM#4)
1 parent 319931c commit 5c5bd20

File tree

24 files changed

+68
-36
lines changed

24 files changed

+68
-36
lines changed

README.md

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* [Features](#features)
1919
* [Currently supported Boards](#currently-supported-boards)
2020
* [Changelog](#changelog)
21+
* [Releases v1.3.1](#releases-v131)
2122
* [Major Releases v1.3.0](#major-releases-v130)
2223
* [Major Releases v1.2.0](#major-releases-v120)
2324
* [Releases v1.1.3](#releases-v113)
@@ -178,16 +179,20 @@ With version `v1.0.5` or later, you can configure:
178179

179180
This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_WF) currently supports these following boards:
180181

181-
1. **ESP32 using EEPROM, SPIFFS or LittleFS**.
182-
2. **ESP32-S2 (ESP32-S2 Saola, AI-Thinker ESP-12K, etc.) using EEPROM**
183-
3. **ESP8266 using EEPROM, SPIFFS or LittleFS**.
182+
1. **ESP8266 and ESP32-based boards using EEPROM, SPIFFS or LittleFS**.
183+
2. **ESP32-S2 (ESP32-S2 Saola, AI-Thinker ESP-12K, etc.) using EEPROM, SPIFFS or LittleFS**.
184+
3. **ESP32-C3 (ARDUINO_ESP32C3_DEV) using EEPROM or SPIFFS**.
184185

185186

186187
---
187188
---
188189

189190
## Changelog
190191

192+
### Releases v1.3.1
193+
194+
1. Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32. Check [Custom Blynk port not working for BlynkSimpleEsp32_Async_WM.h #4](https://github.com/khoih-prog/Blynk_Async_WM/issues/4)
195+
191196
### Major Releases v1.3.0
192197

193198
1. Add **LittleFS and SPIFFS** support to new **ESP32-S2** boards (**Arduino ESP32C3_DEV**). Check [HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE](#howto-install-esp32-core-for-esp32-s2-saola-ai-thinker-esp-12k-and-esp32-c3-boards-into-arduino-ide).
@@ -2051,7 +2056,7 @@ Blynk.resetAndEnterConfigPortal();
20512056

20522057
```
20532058
Starting ESP8266WM_MRD_ForcedConfig using LittleFS without SSL on ESP8266_NODEMCU
2054-
Blynk_WM for ESP8266 v1.3.0
2059+
Blynk_WM for ESP8266 v1.3.1
20552060
ESP_MultiResetDetector v1.1.1
20562061
LittleFS Flag read = 0xFFFE0001
20572062
multiResetDetectorFlag = 0xFFFE0001
@@ -2137,7 +2142,7 @@ Non-Persistent CP will be removed after first reset, even you didn't enter the C
21372142

21382143
```
21392144
Starting ESP8266WM_MRD_ForcedConfig using LittleFS without SSL on ESP8266_NODEMCU
2140-
Blynk_WM for ESP8266 v1.3.0
2145+
Blynk_WM for ESP8266 v1.3.1
21412146
ESP_MultiResetDetector v1.1.1
21422147
LittleFS Flag read = 0xFFFE0001
21432148
multiResetDetectorFlag = 0xFFFE0001
@@ -2219,7 +2224,7 @@ Blynk.resetAndEnterConfigPortalPersistent();
22192224

22202225
```
22212226
Starting ESP8266WM_MRD_ForcedConfig using LittleFS without SSL on ESP8266_NODEMCU
2222-
Blynk_WM for ESP8266 v1.3.0
2227+
Blynk_WM for ESP8266 v1.3.1
22232228
ESP_MultiResetDetector v1.1.1
22242229
LittleFS Flag read = 0xFFFE0001
22252230
multiResetDetectorFlag = 0xFFFE0001
@@ -2306,7 +2311,7 @@ Persistent CP will remain after resets. The only way to get rid of Config Portal
23062311

23072312
```
23082313
Starting ESP8266WM_MRD_ForcedConfig using LittleFS without SSL on ESP8266_NODEMCU
2309-
Blynk_WM for ESP8266 v1.3.0
2314+
Blynk_WM for ESP8266 v1.3.1
23102315
ESP_MultiResetDetector v1.1.1
23112316
LittleFS Flag read = 0xFFFE0001
23122317
multiResetDetectorFlag = 0xFFFE0001
@@ -2580,6 +2585,10 @@ Sometimes, the library will only work if you update the board core to the latest
25802585

25812586
## Releases
25822587

2588+
### Releases v1.3.1
2589+
2590+
1. Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32. Check [Custom Blynk port not working for BlynkSimpleEsp32_Async_WM.h #4](https://github.com/khoih-prog/Blynk_Async_WM/issues/4)
2591+
25832592
### Major Releases v1.3.0
25842593

25852594
1. Add **LittleFS and SPIFFS** support to new **ESP32-S2** boards (**Arduino ESP32C3_DEV**). Check [HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE](#howto-install-esp32-core-for-esp32-s2-saola-ai-thinker-esp-12k-and-esp32-c3-boards-into-arduino-ide).
@@ -2791,6 +2800,7 @@ Submit issues to: [Blynk_WM issues](https://github.com/khoih-prog/Blynk_WM/issue
27912800
* [How to trigger a Config Portal from code #25](https://github.com/khoih-prog/Blynk_WM/issues/25)
27922801
* [Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27](https://github.com/khoih-prog/Blynk_WM/issues/27)
27932802
5. Thanks to [Thor Johnson](https://github.com/thorathome) and [kevinleberge](https://github.com/kevinleberge) to help locate the bugs, discuss the USE_DEFAULT_CONFIG_DATA solution leading to release v1.0.16. See [Can’t load defaults](https://github.com/khoih-prog/Blynk_WM/issues/15) and [Setting "#define USE_DYNAMIC_PARAMETERS false" on Blynk_WM_Template.ino results in compile error](https://github.com/khoih-prog/Blynk_WM/issues/16)
2803+
6. Thanks to [komaneko](https://github.com/jjskaife) to report bugs in [Custom Blynk port not working for BlynkSimpleEsp32_Async_WM.h #4](https://github.com/khoih-prog/Blynk_Async_WM/issues/4) leading to v1.3.1
27942804

27952805
<table>
27962806
<tr>
@@ -2799,6 +2809,7 @@ Submit issues to: [Blynk_WM issues](https://github.com/khoih-prog/Blynk_WM/issue
27992809
<td align="center"><a href="https://github.com/brondolin"><img src="https://github.com/brondolin.png" width="100px;" alt="brondolin"/><br /><sub><b>brondolin</b></sub></a><br /></td>
28002810
<td align="center"><a href="https://github.com/thorathome"><img src="https://github.com/thorathome.png" width="100px;" alt="thorathome"/><br /><sub><b>⭐️ Thor Johnson</b></sub></a><br /></td>
28012811
<td align="center"><a href="https://github.com/kevinleberge"><img src="https://github.com/kevinleberge.png" width="100px;" alt="kevinleberge"/><br /><sub><b>kevinleberge</b></sub></a><br /></td>
2812+
<td align="center"><a href="https://github.com/jjskaife"><img src="https://github.com/jjskaife.png" width="100px;" alt="jjskaife"/><br /><sub><b>komaneko</b></sub></a><br /></td>
28022813
</tr>
28032814
</table>
28042815

examples/AM2315_ESP32_SSL/AM2315_ESP32_SSL.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

examples/AM2315_ESP8266/AM2315_ESP8266.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

examples/Blynk_WM_Template/Blynk_WM_Template.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
99
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
1010
Licensed under MIT license
11-
Version: 1.3.0
11+
Version: 1.3.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -36,6 +36,7 @@
3636
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3737
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3838
Fix SSL issue with Blynk Cloud Server
39+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3940
*****************************************************************************************************************************/
4041

4142
// Sketch uses Arduino IDE-selected ESP32 and ESP8266 to select compile choices

examples/DHT11ESP32/DHT11ESP32.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

examples/DHT11ESP32_SSL/DHT11ESP32_SSL.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

examples/DHT11ESP8266/DHT11ESP8266.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

examples/DHT11ESP8266_Debug/DHT11ESP8266_Debug.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940
#include "defines.h"
4041

examples/DHT11ESP8266_SSL/DHT11ESP8266_SSL.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

examples/ESP32WM_Config/ESP32WM_Config.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Forked from Blynk library v0.6.1 https://github.com/blynkkk/blynk-library/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/Blynk_WM
99
Licensed under MIT license
10-
Version: 1.3.0
10+
Version: 1.3.1
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
@@ -35,6 +35,7 @@
3535
1.2.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
3636
1.3.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
3737
Fix SSL issue with Blynk Cloud Server
38+
1.3.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
3839
*****************************************************************************************************************************/
3940

4041
#include "defines.h"

0 commit comments

Comments
 (0)