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.
### Releases v1.1.1
1. Add functions to control Config Portal from software or Virtual Switches. Check [How to trigger a Config Portal from code #25](khoih-prog/Blynk_WM#25)
2. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
3. To permit autoreset 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.3. After inputting valid credentials and reboot](#13-after-inputting-valid-credentials-and-reboot)
60
+
*[1.3. After inputting valid credentials and reboot](#13-after-inputting-valid-credentials-and-reboot)
61
+
*[1.4. Enter non-persistent ConfigPortal](#14-enter-non-persistent-configportal)
62
+
*[1.5. Enter persistent ConfigPortal](#15-enter-persistent-configportal)
60
63
*[Debug](#debug)
61
64
*[Troubleshooting](#troubleshooting)
62
65
*[Releases](#releases)
@@ -111,6 +114,12 @@ This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_
111
114
112
115
## Changelog
113
116
117
+
### Releases v1.1.1
118
+
119
+
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)
120
+
2. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
121
+
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)
122
+
114
123
### Major Releases v1.1.0
115
124
116
125
1. Add support to LittleFS for ESP32 using [LITTLEFS](https://github.com/lorol/LITTLEFS) Library
@@ -557,6 +566,36 @@ BlynkTimer timer;
557
566
#include<Ticker.h>
558
567
Ticker led_ticker;
559
568
569
+
#if USE_BLYNK_WM
570
+
571
+
#define BLYNK_PIN_FORCED_CONFIG V10
572
+
#define BLYNK_PIN_FORCED_PERS_CONFIG V20
573
+
574
+
// Use button V10 (BLYNK_PIN_FORCED_CONFIG) to forced Config Portal
@@ -1038,7 +1088,7 @@ The following is the sample terminal output when running example [Async_ESP32_BL
1038
1088
1039
1089
```
1040
1090
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1041
-
Blynk_Async_ESP32_BT_WF v1.1.0
1091
+
Blynk_Async_ESP32_BT_WF v1.1.1
1042
1092
ESP_DoubleResetDetector v1.1.1
1043
1093
GPIO14 HIGH, Use WiFi
1044
1094
USE_BLYNK_WM: Blynk_WF begin
@@ -1096,7 +1146,7 @@ FF[9799112] id: = HueNet1
1096
1146
1097
1147
```
1098
1148
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1099
-
Blynk_Async_ESP32_BT_WF v1.1.0
1149
+
Blynk_Async_ESP32_BT_WF v1.1.1
1100
1150
ESP_DoubleResetDetector v1.1.1
1101
1151
GPIO14 HIGH, Use WiFi
1102
1152
USE_BLYNK_WM: Blynk_WF begin
@@ -1174,7 +1224,7 @@ FFFFF
1174
1224
1175
1225
```
1176
1226
Starting Async_ESP32_BLE_WF using SPIFFS without SSL on ESP32_DEV
1177
-
Blynk_Async_ESP32_BT_WF v1.1.0
1227
+
Blynk_Async_ESP32_BT_WF v1.1.1
1178
1228
ESP_DoubleResetDetector v1.1.1
1179
1229
GPIO14 HIGH, Use WiFi
1180
1230
USE_BLYNK_WM: Blynk_WF begin
@@ -1242,8 +1292,167 @@ Stop doubleResetDetecting
1242
1292
Saving config file...
1243
1293
Saving config file OK
1244
1294
BBBB
1295
+
```
1296
+
1297
+
---
1298
+
1299
+
#### 1.4 Enter non-persistent ConfigPortal
1300
+
1301
+
**Non-Persistent CP will be removed after first reset or time-out, even you didn't enter the CP**. You can optionally enter CP, input and `Save` config data.
1302
+
1303
+
```
1304
+
CP Button Hit. Rebooting
1305
+
[13025] setForcedCP non-Persistent
1306
+
[13039] SaveCPFile
1307
+
[13044] OK
1308
+
[13058] SaveBkUpCPFile
1309
+
[13063] OK
1310
+
ets Jun 8 2016 00:22:57
1311
+
1312
+
1313
+
Starting Async_ESP32_BLE_WF using LITTLEFS without SSL on ESP32_DEV
**Persistent CP will remain even after resets or time-out**. The only way to get rid of Config Portal is to enter CP, input (even fake data or none) and `Save` config data. So be careful to use this feature.
1245
1384
1246
1385
```
1386
+
Persistent CP Button Hit. Rebooting
1387
+
[218377] setForcedCP Persistent
1388
+
[218390] SaveCPFile
1389
+
[218394] OK
1390
+
[218408] SaveBkUpCPFile
1391
+
[218413] OK
1392
+
ets Jun 8 2016 00:22:57
1393
+
1394
+
1395
+
Starting Async_ESP32_BLE_WF using LITTLEFS without SSL on ESP32_DEV
@@ -1275,6 +1484,12 @@ Sometimes, the library will only work if you update the board core to the latest
1275
1484
1276
1485
## Releases
1277
1486
1487
+
### Releases v1.1.1
1488
+
1489
+
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)
1490
+
2. Fix rare Config Portal bug not updating Config and dynamic Params data successfully in very noisy or weak WiFi situation
1491
+
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)
1492
+
1278
1493
### Major Releases v1.1.0
1279
1494
1280
1495
1. Add support to LittleFS for ESP32 using [LITTLEFS](https://github.com/lorol/LITTLEFS) Library
0 commit comments