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

Commit d64777a

Browse files
authored
v1.2.2 to update PIO
### Releases v1.2.2 1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
1 parent 04bcff0 commit d64777a

17 files changed

+97
-210
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.15) or Platform.io version
18-
* `ESP32` Core Version (e.g. ESP32 core v1.0.6)
17+
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
18+
* `ESP32` Core Version (e.g. ESP32 core v2.0.0)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -26,10 +26,10 @@ Please ensure to specify the following:
2626
### Example
2727

2828
```
29-
Arduino IDE version: 1.8.15
30-
ESP32 Core Version 1.0.6
29+
Arduino IDE version: 1.8.16
30+
ESP32 Core Version 2.0.0
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.4.0-80-generic #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
The board couldn't autoreconnect to Local Blynk Server after router power recycling.

README.md

Lines changed: 8 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@
1616
* [Why Async is better](#why-async-is-better)
1717
* [Currently supported Boards](#currently-supported-boards)
1818
* [Not yet supported Boards](#not-yet-supported-boards)
19-
* [Changelog](#changelog)
20-
* [Releases v1.2.1](#releases-v121)
21-
* [Major Releases v1.2.0](#major-releases-v120)
22-
* [Releases v1.1.1](#releases-v111)
23-
* [Major Releases v1.1.0](#major-releases-v110)
24-
* [Releases v1.0.6](#releases-v106)
19+
* [Changelog](changelog.md)
2520
* [Prerequisites](#prerequisites)
2621
* [Installation](#installation)
2722
* [Use Arduino Library Manager](#use-arduino-library-manager)
@@ -78,7 +73,6 @@
7873
* [1.5. Enter persistent ConfigPortal](#15-enter-persistent-configportal)
7974
* [Debug](#debug)
8075
* [Troubleshooting](#troubleshooting)
81-
* [Releases](#releases)
8276
* [Issues](#issues)
8377
* [TO DO](#to-do)
8478
* [DONE](#done)
@@ -132,52 +126,12 @@ This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_
132126
---
133127
---
134128

135-
## Changelog
136-
137-
### Releases v1.2.1
138-
139-
1. Add auto-reconnect feature for BLE. Check [Handle BLE disconnects #2](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/issues/2)
140-
141-
142-
### Major Releases v1.2.0
143-
144-
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-15)
145-
2. Fix invalid "blank" Config Data treated as Valid.
146-
3. Permit optionally inputting one set of WiFi SSID/PWD by using `REQUIRE_ONE_SET_SSID_PW == true`
147-
4. Enforce WiFi PWD minimum length of 8 chars
148-
5. Minor enhancement to not display garbage when data is invalid
149-
6. 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)
150-
7. To permit auto-reset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](https://github.com/khoih-prog/Blynk_WM/issues/27)
151-
8. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
152-
9. Tested with [**Latest ESP32 Core 1.0.6**](https://github.com/espressif/arduino-esp32) for ESP32-based boards.
153-
10. Update examples
154-
155-
### Releases v1.1.1
156-
157-
1. Add functions to control Config Portal from software or Virtual Switches. Check [How to trigger a Config Portal from code #25](https://github.com/khoih-prog/Blynk_WM/issues/25)
158-
2. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
159-
3. To permit autoreset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](https://github.com/khoih-prog/Blynk_WM/issues/27)
160-
161-
### Major Releases v1.1.0
162-
163-
1. Add support to LittleFS for ESP32 using [LITTLEFS](https://github.com/lorol/LITTLEFS) Library
164-
2. Clean-up all compiler warnings possible.
165-
3. Add Table of Contents
166-
4. Add Version String
167-
168-
### Releases v1.0.6
169-
170-
1. Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
171-
2. Bump up to v1.0.6 to sync with [BlynkESP32_BT_WF library v1.0.6](https://github.com/khoih-prog/BlynkESP32_BT_WF).
172-
173-
---
174-
---
175129

176130
## Prerequisites
177131

178-
1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
132+
1. [`Arduino IDE 1.8.16+` for Arduino](https://www.arduino.cc/en/Main/Software)
179133
2. [`Blynk library 0.6.1`](https://github.com/blynkkk/blynk-library/releases).
180-
3. [`ESP32 Core 1.0.6`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/). Don't use Pre-Releases such as [`ESP32 Core 2.0.0-RC1`](https://github.com/espressif/arduino-esp32/releases/tag/2.0.0-rc1) as it's not supported yet.
134+
3. [`ESP32 Core 2.0.0+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
181135
4. [`ESP_DoubleResetDetector library 1.1.1+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) to use DRD feature. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_DoubleResetDetector.svg?)](https://www.ardu-badge.com/ESP_DoubleResetDetector).
182136
5. [`ESPAsyncWebServer v1.2.3+`](https://github.com/me-no-dev/ESPAsyncWebServer)
183137
6. [`AsyncTCP v1.1.1+`](https://github.com/me-no-dev/AsyncTCP)
@@ -1307,7 +1261,7 @@ The following is the sample terminal output when running example [Async_ESP32_BL
13071261

13081262
```
13091263
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1310-
Blynk_Async_ESP32_BT_WF v1.2.1
1264+
Blynk_Async_ESP32_BT_WF v1.2.2
13111265
ESP_DoubleResetDetector v1.1.1
13121266
GPIO14 HIGH, Use WiFi
13131267
USE_BLYNK_WM: Blynk_WF begin
@@ -1365,7 +1319,7 @@ FF[9799112] id: = HueNet1
13651319

13661320
```
13671321
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1368-
Blynk_Async_ESP32_BT_WF v1.2.1
1322+
Blynk_Async_ESP32_BT_WF v1.2.2
13691323
ESP_DoubleResetDetector v1.1.1
13701324
GPIO14 HIGH, Use WiFi
13711325
USE_BLYNK_WM: Blynk_WF begin
@@ -1443,7 +1397,7 @@ FFFFF
14431397

14441398
```
14451399
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1446-
Blynk_Async_ESP32_BT_WF v1.2.1
1400+
Blynk_Async_ESP32_BT_WF v1.2.2
14471401
ESP_DoubleResetDetector v1.1.1
14481402
GPIO14 HIGH, Use WiFi
14491403
USE_BLYNK_WM: Blynk_WF begin
@@ -1530,7 +1484,7 @@ ets Jun 8 2016 00:22:57
15301484
15311485
15321486
Starting Async_ESP32_BLE_WF using LITTLEFS without SSL on ESP32_DEV
1533-
Blynk_Async_ESP32_BT_WF v1.2.1
1487+
Blynk_Async_ESP32_BT_WF v1.2.2
15341488
ESP_DoubleResetDetector v1.1.1
15351489
GPIO14 HIGH, Use WiFi
15361490
USE_BLYNK_WM: Blynk_WF begin
@@ -1612,7 +1566,7 @@ ets Jun 8 2016 00:22:57
16121566
16131567
16141568
Starting Async_ESP32_BLE_WF using LITTLEFS without SSL on ESP32_DEV
1615-
Blynk_Async_ESP32_BT_WF v1.2.1
1569+
Blynk_Async_ESP32_BT_WF v1.2.2
16161570
ESP_DoubleResetDetector v1.1.1
16171571
GPIO14 HIGH, Use WiFi
16181572
USE_BLYNK_WM: Blynk_WF begin
@@ -1701,45 +1655,6 @@ Sometimes, the library will only work if you update the board core to the latest
17011655
---
17021656
---
17031657

1704-
## Releases
1705-
1706-
### Releases v1.2.1
1707-
1708-
1. Add auto-reconnect feature for BLE. Check [Handle BLE disconnects #2](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/issues/2)
1709-
1710-
### Major Releases v1.2.0
1711-
1712-
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-15)
1713-
2. Fix invalid "blank" Config Data treated as Valid.
1714-
3. Permit optionally inputting one set of WiFi SSID/PWD by using `REQUIRE_ONE_SET_SSID_PW == true`
1715-
4. Enforce WiFi PWD minimum length of 8 chars
1716-
5. Minor enhancement to not display garbage when data is invalid
1717-
6. 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)
1718-
7. To permit auto-reset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](https://github.com/khoih-prog/Blynk_WM/issues/27)
1719-
8. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
1720-
9. Tested with [**Latest ESP32 Core 1.0.6**](https://github.com/espressif/arduino-esp32) for ESP32-based boards.
1721-
10. Update examples
1722-
1723-
### Releases v1.1.1
1724-
1725-
1. Add functions to control Config Portal from software or Virtual Switches. Check [How to trigger a Config Portal from code #25](https://github.com/khoih-prog/Blynk_WM/issues/25)
1726-
2. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
1727-
3. To permit autoreset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](https://github.com/khoih-prog/Blynk_WM/issues/27)
1728-
1729-
### Major Releases v1.1.0
1730-
1731-
1. Add support to LittleFS for ESP32 using [LITTLEFS](https://github.com/lorol/LITTLEFS) Library
1732-
2. Clean-up all compiler warnings possible.
1733-
3. Add Table of Contents
1734-
4. Add Version String
1735-
1736-
### Releases v1.0.6
1737-
1738-
1. Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
1739-
2. Bump up to v1.0.6 to sync with [BlynkESP32_BT_WF library v1.0.6](https://github.com/khoih-prog/BlynkESP32_BT_WF).
1740-
1741-
---
1742-
---
17431658

17441659
## TO DO
17451660

changelog.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
## Blynk_Async_ESP32_BT_WF
2+
3+
[![arduino-library-badge](https://www.ardu-badge.com/badge/Blynk_Async_ESP32_BT_WF.svg?)](https://www.ardu-badge.com/Blynk_Async_ESP32_BT_WF)
4+
[![GitHub release](https://img.shields.io/github/release/khoih-prog/Blynk_Async_ESP32_BT_WF.svg)](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/releases)
5+
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/blob/master/LICENSE)
6+
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
7+
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/Blynk_Async_ESP32_BT_WF.svg)](http://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/issues)
8+
9+
---
10+
---
11+
12+
## Table of Contents
13+
14+
* [Changelog](#changelog)
15+
* [Releases v1.2.2](#releases-v122)
16+
* [Releases v1.2.1](#releases-v121)
17+
* [Major Releases v1.2.0](#major-releases-v120)
18+
* [Releases v1.1.1](#releases-v111)
19+
* [Major Releases v1.1.0](#major-releases-v110)
20+
* [Releases v1.0.6](#releases-v106)
21+
22+
---
23+
---
24+
25+
## Changelog
26+
27+
### Releases v1.2.2
28+
29+
1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
30+
31+
### Releases v1.2.1
32+
33+
1. Add auto-reconnect feature for BLE. Check [Handle BLE disconnects #2](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/issues/2)
34+
35+
36+
### Major Releases v1.2.0
37+
38+
1. Enable scan of WiFi networks for selection in Configuration Portal. Check [PR for v1.3.0 - Enable scan of WiFi networks #10](https://github.com/khoih-prog/WiFiManager_NINA_Lite/pull/10). Now you can select optional **SCAN_WIFI_NETWORKS**, **MANUAL_SSID_INPUT_ALLOWED** to be able to manually input SSID, not only from a scanned SSID lists and **MAX_SSID_IN_LIST** (from 2-15)
39+
2. Fix invalid "blank" Config Data treated as Valid.
40+
3. Permit optionally inputting one set of WiFi SSID/PWD by using `REQUIRE_ONE_SET_SSID_PW == true`
41+
4. Enforce WiFi PWD minimum length of 8 chars
42+
5. Minor enhancement to not display garbage when data is invalid
43+
6. 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)
44+
7. To permit auto-reset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](https://github.com/khoih-prog/Blynk_WM/issues/27)
45+
8. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
46+
9. Tested with [**Latest ESP32 Core 1.0.6**](https://github.com/espressif/arduino-esp32) for ESP32-based boards.
47+
10. Update examples
48+
49+
### Releases v1.1.1
50+
51+
1. Add functions to control Config Portal from software or Virtual Switches. Check [How to trigger a Config Portal from code #25](https://github.com/khoih-prog/Blynk_WM/issues/25)
52+
2. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
53+
3. To permit autoreset after configurable timeout if DRD/MRD or non-persistent forced-CP. Check [**Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27**](https://github.com/khoih-prog/Blynk_WM/issues/27)
54+
55+
### Major Releases v1.1.0
56+
57+
1. Add support to LittleFS for ESP32 using [LITTLEFS](https://github.com/lorol/LITTLEFS) Library
58+
2. Clean-up all compiler warnings possible.
59+
3. Add Table of Contents
60+
4. Add Version String
61+
62+
### Releases v1.0.6
63+
64+
1. Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
65+
2. Bump up to v1.0.6 to sync with [BlynkESP32_BT_WF library v1.0.6](https://github.com/khoih-prog/BlynkESP32_BT_WF).
66+
67+
68+

examples/Async_ESP32_BLE_WF/Async_ESP32_BLE_WF.ino

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +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_ESP32_BT_WF
1010
Licensed under MIT license
11-
12-
Version: 1.2.1
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
1.0.6 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
17-
Bump up to v1.0.6 to sync with BlynkESP32_BT_WF v1.0.6.
18-
1.1.0 K Hoang 30/12/2020 Add support to LittleFS. Remove possible compiler warnings. Update examples
19-
1.1.1 K Hoang 31/01/2021 Add functions to control Config Portal (CP) from software or Virtual Switches
20-
Fix CP and Dynamic Params bugs. To permit autoreset after timeout if DRD/MRD or forced CP
21-
1.2.0 K Hoang 24/04/2021 Enable scan of WiFi networks for selection in Configuration Portal and many new features.
22-
1.2.1 K Hoang 13/08/2021 Add auto-reconnect feature for BLE
2311
*****************************************************************************************************************************/
2412
/****************************************************************************************************************************
2513
Important Notes:

examples/Async_ESP32_BT_WF/Async_ESP32_BT_WF.ino

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +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_ESP32_BT_WF
1010
Licensed under MIT license
11-
12-
Version: 1.2.1
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
1.0.6 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
17-
Bump up to v1.0.6 to sync with BlynkESP32_BT_WF v1.0.6.
18-
1.1.0 K Hoang 30/12/2020 Add support to LittleFS. Remove possible compiler warnings. Update examples
19-
1.1.1 K Hoang 31/01/2021 Add functions to control Config Portal (CP) from software or Virtual Switches
20-
Fix CP and Dynamic Params bugs. To permit autoreset after timeout if DRD/MRD or forced CP
21-
1.2.0 K Hoang 24/04/2021 Enable scan of WiFi networks for selection in Configuration Portal and many new features.
22-
1.2.1 K Hoang 13/08/2021 Add auto-reconnect feature for BLE
2311
*****************************************************************************************************************************/
2412
/****************************************************************************************************************************
2513
Important Notes:

examples/Async_Geiger_Counter_BLE/Async_Geiger_Counter_BLE.ino

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +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_ESP32_BT_WF
1010
Licensed under MIT license
11-
12-
Version: 1.2.1
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
1.0.6 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
17-
Bump up to v1.0.6 to sync with BlynkESP32_BT_WF v1.0.6.
18-
1.1.0 K Hoang 30/12/2020 Add support to LittleFS. Remove possible compiler warnings. Update examples
19-
1.1.1 K Hoang 31/01/2021 Add functions to control Config Portal (CP) from software or Virtual Switches
20-
Fix CP and Dynamic Params bugs. To permit autoreset after timeout if DRD/MRD or forced CP
21-
1.2.0 K Hoang 24/04/2021 Enable scan of WiFi networks for selection in Configuration Portal and many new features.
22-
1.2.1 K Hoang 13/08/2021 Add auto-reconnect feature for BLE
2311
*****************************************************************************************************************************/
2412
/****************************************************************************************************************************
2513
Important Notes:

examples/Async_Geiger_Counter_BT/Async_Geiger_Counter_BT.ino

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +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_ESP32_BT_WF
1010
Licensed under MIT license
11-
12-
Version: 1.2.1
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
1.0.6 K Hoang 25/08/2020 Initial coding to use (ESP)AsyncWebServer instead of (ESP8266)WebServer.
17-
Bump up to v1.0.6 to sync with BlynkESP32_BT_WF v1.0.6.
18-
1.1.0 K Hoang 30/12/2020 Add support to LittleFS. Remove possible compiler warnings. Update examples
19-
1.1.1 K Hoang 31/01/2021 Add functions to control Config Portal (CP) from software or Virtual Switches
20-
Fix CP and Dynamic Params bugs. To permit autoreset after timeout if DRD/MRD or forced CP
21-
1.2.0 K Hoang 24/04/2021 Enable scan of WiFi networks for selection in Configuration Portal and many new features.
22-
1.2.1 K Hoang 13/08/2021 Add auto-reconnect feature for BLE
2311
*****************************************************************************************************************************/
2412
/****************************************************************************************************************************
2513
Important Notes:

0 commit comments

Comments
 (0)