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

Commit d0a83f9

Browse files
authored
v1.4.1 to fix ESP32 bug
### Releases v1.4.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](#4)
1 parent 1e176f0 commit d0a83f9

File tree

22 files changed

+44
-22
lines changed

22 files changed

+44
-22
lines changed

examples/Async_AM2315_ESP32_SSL/Async_AM2315_ESP32_SSL.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_AM2315_ESP8266/Async_AM2315_ESP8266.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_Blynk_WM_Template/Async_Blynk_WM_Template.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
1111
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1212
Licensed under MIT license
13-
Version: 1.4.0
13+
Version: 1.4.1
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
@@ -24,6 +24,7 @@
2424
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2525
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2626
Fix SSL issue with Blynk Cloud Server
27+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2728
********************************************************************************************************************************/
2829

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

examples/Async_DHT11ESP32/Async_DHT11ESP32.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_DHT11ESP32_SSL/Async_DHT11ESP32_SSL.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_DHT11ESP8266/Async_DHT11ESP8266.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_DHT11ESP8266_Debug/Async_DHT11ESP8266_Debug.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627
#include "defines.h"
2728

examples/Async_DHT11ESP8266_SSL/Async_DHT11ESP8266_SSL.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP32WM_Config/Async_ESP32WM_Config.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP32WM_ForcedConfig/Async_ESP32WM_ForcedConfig.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP32WM_MRD_Config/Async_ESP32WM_MRD_Config.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP32WM_MRD_ForcedConfig/Async_ESP32WM_MRD_ForcedConfig.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP8266WM_Config/Async_ESP8266WM_Config.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP8266WM_ForcedConfig/Async_ESP8266WM_ForcedConfig.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP8266WM_MRD_Config/Async_ESP8266WM_MRD_Config.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/Async_ESP8266WM_MRD_ForcedConfig/Async_ESP8266WM_MRD_ForcedConfig.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/AsyncMT_AM2315_ESP32_SSL.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/AsyncMT_DHT11ESP32.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/AsyncMT_DHT11ESP32_SSL.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/AsyncMT_ESP32WM_Config.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/AsyncMT_ESP32WM_ForcedConfig.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases)
99
Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM)
1010
Licensed under MIT license
11-
Version: 1.4.0
11+
Version: 1.4.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -22,6 +22,7 @@
2222
1.3.0 K Hoang 24/02/2021 Add customs HTML header feature and support to ESP32-S2.
2323
1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS
2424
Fix SSL issue with Blynk Cloud Server
25+
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2526
********************************************************************************************************************************/
2627

2728
#include "defines.h"

0 commit comments

Comments
 (0)