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

Commit 82687a5

Browse files
authored
v1.2.3
### Releases v1.2.3 1. To permit auto-reset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](khoih-prog/Blynk_WM#27)
1 parent 7480b73 commit 82687a5

File tree

91 files changed

+46
-714
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+46
-714
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.2.2
11+
Version: 1.2.3
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -18,6 +18,7 @@
1818
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
1919
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
2020
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
21+
1.2.3 K Hoang 31/01/2021 To permit autoreset after timeout if DRD/MRD or non-persistent forced-CP
2122
********************************************************************************************************************************/
2223

2324
#include "defines.h"

examples/Async_AM2315_ESP32_SSL/Credentials.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef Credentials_h

examples/Async_AM2315_ESP32_SSL/defines.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef defines_h

examples/Async_AM2315_ESP32_SSL/dynamicParams.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef dynamicParams_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.2.2
11+
Version: 1.2.3
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -18,6 +18,7 @@
1818
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
1919
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
2020
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
21+
1.2.3 K Hoang 31/01/2021 To permit autoreset after timeout if DRD/MRD or non-persistent forced-CP
2122
********************************************************************************************************************************/
2223

2324
#include "defines.h"

examples/Async_AM2315_ESP8266/Credentials.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef Credentials_h

examples/Async_AM2315_ESP8266/defines.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef defines_h

examples/Async_AM2315_ESP8266/dynamicParams.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef dynamicParams_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.2.2
13+
Version: 1.2.3
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
@@ -20,6 +20,7 @@
2020
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
2121
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
2222
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
23+
1.2.3 K Hoang 31/01/2021 To permit autoreset after timeout if DRD/MRD or non-persistent forced-CP
2324
********************************************************************************************************************************/
2425

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

examples/Async_Blynk_WM_Template/ESP_LED_BUILTINS.h

-10
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,6 @@
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.2.2
14-
15-
Version Modified By Date Comments
16-
------- ----------- ---------- -----------
17-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
18-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
19-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
20-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
21-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
22-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2313
********************************************************************************************************************************/
2414

2515
#ifndef ESP_LED_BUILTINS_h

examples/Async_Blynk_WM_Template/MY_BLYNK_COLORS.h

-10
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,6 @@
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.2.2
14-
15-
Version Modified By Date Comments
16-
------- ----------- ---------- -----------
17-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
18-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
19-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
20-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
21-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
22-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2313
********************************************************************************************************************************/
2414

2515
#ifndef MY_BLYNK_COLORS_h

examples/Async_Blynk_WM_Template/MY_BLYNK_CREDENTIALS.h

-10
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,6 @@
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.2.2
14-
15-
Version Modified By Date Comments
16-
------- ----------- ---------- -----------
17-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
18-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
19-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
20-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
21-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
22-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2313
********************************************************************************************************************************/
2414

2515
#ifndef MY_BLYNK_CREDENTIALS_h

examples/Async_Blynk_WM_Template/MY_WIFI_CREDENTIALS.h

-10
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,6 @@
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.2.2
14-
15-
Version Modified By Date Comments
16-
------- ----------- ---------- -----------
17-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
18-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
19-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
20-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
21-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
22-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2313
********************************************************************************************************************************/
2414

2515
#ifndef MY_WIFI_CREDENTIALS_h

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.2.2
11+
Version: 1.2.3
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -18,6 +18,7 @@
1818
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
1919
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
2020
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
21+
1.2.3 K Hoang 31/01/2021 To permit autoreset after timeout if DRD/MRD or non-persistent forced-CP
2122
********************************************************************************************************************************/
2223

2324
#include "defines.h"

examples/Async_DHT11ESP32/Credentials.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef Credentials_h

examples/Async_DHT11ESP32/defines.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef defines_h

examples/Async_DHT11ESP32/dynamicParams.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef dynamicParams_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.2.2
11+
Version: 1.2.3
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -18,6 +18,7 @@
1818
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
1919
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
2020
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
21+
1.2.3 K Hoang 31/01/2021 To permit autoreset after timeout if DRD/MRD or non-persistent forced-CP
2122
********************************************************************************************************************************/
2223

2324
#include "defines.h"

examples/Async_DHT11ESP32_SSL/Credentials.h

-10
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@
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.2.2
12-
13-
Version Modified By Date Comments
14-
------- ----------- ---------- -----------
15-
1.0.16 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
16-
Bump up to v1.0.16 to sync with Blynk_WM v1.0.16
17-
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
18-
1.2.0 K Hoang 01/01/2021 Add support to ESP32 LittleFS. Remove possible compiler warnings. Update examples. Add MRD
19-
1.2.1 K Hoang 16/01/2021 Add functions to control Config Portal from software or Virtual Switches
20-
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2111
********************************************************************************************************************************/
2212

2313
#ifndef Credentials_h

0 commit comments

Comments
 (0)