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

Commit fe40128

Browse files
authored
v1.2.2
### Releases v1.2.2 1. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
1 parent 0b46616 commit fe40128

File tree

91 files changed

+188
-97
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

+188
-97
lines changed

examples/Async_AM2315_ESP32_SSL/Async_AM2315_ESP32_SSL.ino

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#include "defines.h"

examples/Async_AM2315_ESP32_SSL/Credentials.h

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#ifndef Credentials_h

examples/Async_AM2315_ESP32_SSL/defines.h

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#ifndef defines_h

examples/Async_AM2315_ESP32_SSL/dynamicParams.h

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#ifndef dynamicParams_h

examples/Async_AM2315_ESP8266/Async_AM2315_ESP8266.ino

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#include "defines.h"

examples/Async_AM2315_ESP8266/Credentials.h

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#ifndef Credentials_h

examples/Async_AM2315_ESP8266/defines.h

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#ifndef defines_h

examples/Async_AM2315_ESP8266/dynamicParams.h

Lines changed: 2 additions & 1 deletion
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.1
11+
Version: 1.2.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -17,6 +17,7 @@
1717
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
20+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2021
********************************************************************************************************************************/
2122

2223
#ifndef dynamicParams_h

examples/Async_Blynk_WM_Template/Async_Blynk_WM_Template.ino

Lines changed: 2 additions & 1 deletion
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.1
13+
Version: 1.2.2
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
@@ -19,6 +19,7 @@
1919
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
22+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2223
********************************************************************************************************************************/
2324

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

examples/Async_Blynk_WM_Template/ESP_LED_BUILTINS.h

Lines changed: 2 additions & 1 deletion
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.1
13+
Version: 1.2.2
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
@@ -19,6 +19,7 @@
1919
1.1.0 K Hoang 26/11/2020 Add examples using RTOS MultiTask to avoid blocking in operation.
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
22+
1.2.2 K Hoang 28/01/2021 Fix Config Portal and Dynamic Params bugs
2223
********************************************************************************************************************************/
2324

2425
#ifndef ESP_LED_BUILTINS_h

0 commit comments

Comments
 (0)