You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 5, 2021. It is now read-only.
@@ -133,6 +134,11 @@ This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_
133
134
134
135
## Changelog
135
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
+
136
142
### Major Releases v1.2.0
137
143
138
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)
@@ -169,9 +175,9 @@ This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_
169
175
170
176
## Prerequisites
171
177
172
-
1.[`Arduino IDE 1.8.13+` for Arduino](https://www.arduino.cc/en/Main/Software)
173
-
2.[`Blynk library 0.6.1+`](https://github.com/blynkkk/blynk-library/releases). Never use the **beta versions** or your request for support will be ignored.
174
-
3.[`ESP32 Core 1.0.6+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [](https://github.com/espressif/arduino-esp32/releases/latest/)
178
+
1.[`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
3.[`ESP32 Core 1.0.6`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [](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.
175
181
4.[`ESP_DoubleResetDetector library 1.1.1+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) to use DRD feature. To install, check [](https://www.ardu-badge.com/ESP_DoubleResetDetector).
@@ -1301,7 +1307,7 @@ The following is the sample terminal output when running example [Async_ESP32_BL
1301
1307
1302
1308
```
1303
1309
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1304
-
Blynk_Async_ESP32_BT_WF v1.2.0
1310
+
Blynk_Async_ESP32_BT_WF v1.2.1
1305
1311
ESP_DoubleResetDetector v1.1.1
1306
1312
GPIO14 HIGH, Use WiFi
1307
1313
USE_BLYNK_WM: Blynk_WF begin
@@ -1359,7 +1365,7 @@ FF[9799112] id: = HueNet1
1359
1365
1360
1366
```
1361
1367
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1362
-
Blynk_Async_ESP32_BT_WF v1.2.0
1368
+
Blynk_Async_ESP32_BT_WF v1.2.1
1363
1369
ESP_DoubleResetDetector v1.1.1
1364
1370
GPIO14 HIGH, Use WiFi
1365
1371
USE_BLYNK_WM: Blynk_WF begin
@@ -1437,7 +1443,7 @@ FFFFF
1437
1443
1438
1444
```
1439
1445
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1440
-
Blynk_Async_ESP32_BT_WF v1.2.0
1446
+
Blynk_Async_ESP32_BT_WF v1.2.1
1441
1447
ESP_DoubleResetDetector v1.1.1
1442
1448
GPIO14 HIGH, Use WiFi
1443
1449
USE_BLYNK_WM: Blynk_WF begin
@@ -1524,7 +1530,7 @@ ets Jun 8 2016 00:22:57
1524
1530
1525
1531
1526
1532
Starting Async_ESP32_BLE_WF using LITTLEFS without SSL on ESP32_DEV
1527
-
Blynk_Async_ESP32_BT_WF v1.2.0
1533
+
Blynk_Async_ESP32_BT_WF v1.2.1
1528
1534
ESP_DoubleResetDetector v1.1.1
1529
1535
GPIO14 HIGH, Use WiFi
1530
1536
USE_BLYNK_WM: Blynk_WF begin
@@ -1606,7 +1612,7 @@ ets Jun 8 2016 00:22:57
1606
1612
1607
1613
1608
1614
Starting Async_ESP32_BLE_WF using LITTLEFS without SSL on ESP32_DEV
1609
-
Blynk_Async_ESP32_BT_WF v1.2.0
1615
+
Blynk_Async_ESP32_BT_WF v1.2.1
1610
1616
ESP_DoubleResetDetector v1.1.1
1611
1617
GPIO14 HIGH, Use WiFi
1612
1618
USE_BLYNK_WM: Blynk_WF begin
@@ -1697,6 +1703,10 @@ Sometimes, the library will only work if you update the board core to the latest
1697
1703
1698
1704
## Releases
1699
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
+
1700
1710
### Major Releases v1.2.0
1701
1711
1702
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)
@@ -1735,6 +1745,8 @@ Sometimes, the library will only work if you update the board core to the latest
1735
1745
1736
1746
1. Same features for other boards with WiFi / BT
1737
1747
2. Optimize library so that smaller code size. Currently 2 instances of Blynk coexist and don't share code.
1748
+
3. Add support to ESP32_S2 and ESP32_C3
1749
+
4. Add support to ESP32 core 2.0.0+
1738
1750
1739
1751
---
1740
1752
@@ -1772,6 +1784,7 @@ Sometimes, the library will only work if you update the board core to the latest
1772
1784
30. Permit optionally inputting one set of WiFi SSID/PWD by using `REQUIRE_ONE_SET_SSID_PW == true`
1773
1785
31. Enforce WiFi PWD minimum length of 8 chars
1774
1786
32. Enable **scan of WiFi networks** for selection in Configuration Portal
1787
+
33. Add auto-reconnect feature for BLE.
1775
1788
1776
1789
---
1777
1790
---
@@ -1787,6 +1800,7 @@ Check these new features thanks to his direct contribution and/or enhancement re
1787
1800
*[Good new feature: Blynk.resetAndEnterConfigPortal() Thanks & question #27](https://github.com/khoih-prog/Blynk_WM/issues/27)
1788
1801
5. Thanks to [Michael H. "bizprof"](https://github.com/bizprof). With the impressive new feature :
1789
1802
-`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) leading to v1.2.0
1803
+
6. Thanks to [Valeria](https://github.com/Valeria) to provide the amazing fix to permit BLE auto-reconnect. Check [Handle BLE disconnects #2](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF/issues/2)
1790
1804
1791
1805
<table>
1792
1806
<tr>
@@ -1795,6 +1809,7 @@ Check these new features thanks to his direct contribution and/or enhancement re
0 commit comments