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

Commit 67955de

Browse files
authored
v1.6.1 for connectMultiWiFi params
### Releases v1.6.1 1. Add configurable connectMultiWiFi parameters. Check [Minimize blocking during multi-wifi reconnect #6](#6) 2. Update ESP8266_CORE_VERSION for ESP8266 core v3.0.1+
1 parent d1e2a9c commit 67955de

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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
13+
Version: 1.6.1
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2828
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2929
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
30+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
3031
********************************************************************************************************************************/
3132

3233
// 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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930
#include "defines.h"
3031

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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#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.6.0
11+
Version: 1.6.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32
2626
1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal
2727
1.6.0 K Hoang 19/05/2021 Fix AP connect and SSL issues caused by breaking ESP8266 core v3.0.0
28+
1.6.1 K Hoang 15/07/2021 Add configurable connectMultiWiFi parameters. Update for ESP8266 core v3.0.1
2829
********************************************************************************************************************************/
2930

3031
#include "defines.h"

0 commit comments

Comments
 (0)