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 Nov 25, 2021. It is now read-only.
@@ -188,7 +190,7 @@ With version `v1.0.5` or later, you can configure:
188
190
189
191
#### Currently supported Boards
190
192
191
-
This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_WF) currently supports these following boards:
193
+
This [**Blynk_WM** library](https://github.com/khoih-prog/Blynk_WM) currently supports these following boards:
192
194
193
195
1.**ESP8266 and ESP32-based boards using EEPROM, SPIFFS or LittleFS**.
194
196
2.**ESP32-S2 (ESP32-S2 Saola, AI-Thinker ESP-12K, etc.) using EEPROM, SPIFFS or LittleFS**.
@@ -200,6 +202,12 @@ This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_
200
202
201
203
## Changelog
202
204
205
+
### Releases v1.5.0
206
+
207
+
1. Fix bug.
208
+
2. Optimize and sync with [**Blynk_Async_WM library v1.5.0**](https://github.com/khoih-prog/Blynk_Async_WM)
209
+
210
+
203
211
### Major Releases v1.4.0
204
212
205
213
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)
@@ -1349,6 +1357,7 @@ void loop()
1349
1357
#else
1350
1358
#define BOARD_TYPE "ESP32"
1351
1359
#endif
1360
+
1352
1361
#defineBLYNK_PRINT Serial
1353
1362
1354
1363
#defineBLYNK_WM_DEBUG 3
@@ -1398,7 +1407,7 @@ void loop()
1398
1407
#define USE_LITTLEFS false
1399
1408
#define USE_SPIFFS true
1400
1409
#else
1401
-
#define USE_LITTLEFS true
1410
+
#define USE_LITTLEFS false
1402
1411
#define USE_SPIFFS false
1403
1412
#endif
1404
1413
@@ -1428,6 +1437,21 @@ void loop()
1428
1437
#defineCONFIG_TIMEOUT 120000L
1429
1438
1430
1439
#defineUSE_DYNAMIC_PARAMETERS true
1440
+
1441
+
/////////////////////////////////////////////
1442
+
1443
+
#defineREQUIRE_ONE_SET_SSID_PW false
1444
+
1445
+
#defineSCAN_WIFI_NETWORKS true
1446
+
1447
+
// To be able to manually input SSID, not from a scanned SSID lists
1448
+
#defineMANUAL_SSID_INPUT_ALLOWED true
1449
+
1450
+
// From 2-15
1451
+
#defineMAX_SSID_IN_LIST 8
1452
+
1453
+
/////////////////////////////////////////////
1454
+
1431
1455
// Those above #define's must be placed before #include <BlynkSimpleEsp32_WM.h> and <BlynkSimpleEsp32_SSL_WM.h>
1432
1456
//////////////////////////////////////////
1433
1457
@@ -1619,7 +1643,7 @@ The following is the sample terminal output when running example [ESP8266WM_MRD_
1619
1643
1620
1644
```
1621
1645
Starting ESP8266WM_MRD_Config using LittleFS with SSL on ESP8266_NODEMCU
1622
-
Blynk_WM SSL for ESP8266 v1.4.0
1646
+
Blynk_WM SSL for ESP8266 v1.5.0
1623
1647
ESP_MultiResetDetector v1.1.1
1624
1648
LittleFS Flag read = 0xFFFD0002
1625
1649
multiResetDetectorFlag = 0xFFFD0002
@@ -1699,7 +1723,7 @@ BBBBBB
1699
1723
1700
1724
```
1701
1725
Starting ESP8266WM_MRD_Config using LittleFS with SSL on ESP8266_NODEMCU
1702
-
Blynk_WM SSL for ESP8266 v1.4.0
1726
+
Blynk_WM SSL for ESP8266 v1.5.0
1703
1727
ESP_MultiResetDetector v1.1.1
1704
1728
LittleFS Flag read = 0xFFFC0003
1705
1729
multiResetDetectorFlag = 0xFFFC0003
@@ -1761,7 +1785,7 @@ The following is the sample terminal output when running example [DHT11ESP8266_S
1761
1785
1762
1786
```
1763
1787
Starting DHT11ESP8266_SSL using LittleFS with SSL on ESP8266_NODEMCU
1764
-
Blynk_WM SSL for ESP8266 v1.4.0
1788
+
Blynk_WM SSL for ESP8266 v1.5.0
1765
1789
ESP_DoubleResetDetector v1.1.1
1766
1790
[293] Hostname=ESP8266-DHT11-SSL
1767
1791
[316] LoadCfgFile
@@ -1819,7 +1843,7 @@ The following is the sample terminal output when running example [ESP32WM_MRD_Co
1819
1843
1820
1844
```
1821
1845
Starting ESP32WM_MRD_Config using LITTLEFS without SSL on ESP32_DEV
1822
-
Blynk_WM for ESP32 v1.4.0
1846
+
Blynk_WM for ESP32 v1.5.0
1823
1847
ESP_MultiResetDetector v1.1.1
1824
1848
LittleFS Flag read = 0xFFFE0001
1825
1849
multiResetDetectorFlag = 0xFFFE0001
@@ -1896,7 +1920,7 @@ BBBBBB
1896
1920
1897
1921
```
1898
1922
Starting ESP32WM_MRD_Config using LITTLEFS without SSL on ESP32_DEV
1899
-
Blynk_WM for ESP32 v1.4.0
1923
+
Blynk_WM for ESP32 v1.5.0
1900
1924
ESP_MultiResetDetector v1.1.1
1901
1925
LittleFS Flag read = 0xFFFC0003
1902
1926
multiResetDetectorFlag = 0xFFFC0003
@@ -1954,7 +1978,7 @@ ets Jun 8 2016 00:22:57
1954
1978
1955
1979
```
1956
1980
Starting ESP32WM_MRD_Config using LITTLEFS without SSL on ESP32_DEV
1957
-
Blynk_WM for ESP32 v1.4.0
1981
+
Blynk_WM for ESP32 v1.5.0
1958
1982
ESP_MultiResetDetector v1.1.1
1959
1983
LittleFS Flag read = 0xFFFE0001
1960
1984
multiResetDetectorFlag = 0xFFFE0001
@@ -2078,7 +2102,7 @@ The following is the sample terminal output when running example [DHT11ESP8266_S
2078
2102
2079
2103
```
2080
2104
Starting DHT11ESP32_SSL using LITTLEFS with SSL on ESP32_DEV
Starting ESP8266WM_MRD_ForcedConfig using LittleFS without SSL on ESP8266_NODEMCU
2313
-
Blynk_WM for ESP8266 v1.4.0
2337
+
Blynk_WM for ESP8266 v1.5.0
2314
2338
ESP_MultiResetDetector v1.1.1
2315
2339
LittleFS Flag read = 0xFFFE0001
2316
2340
multiResetDetectorFlag = 0xFFFE0001
@@ -2397,7 +2421,7 @@ Persistent CP will remain after resets. The only way to get rid of Config Portal
2397
2421
2398
2422
```
2399
2423
Starting ESP8266WM_MRD_ForcedConfig using LittleFS without SSL on ESP8266_NODEMCU
2400
-
Blynk_WM for ESP8266 v1.4.0
2424
+
Blynk_WM for ESP8266 v1.5.0
2401
2425
ESP_MultiResetDetector v1.1.1
2402
2426
LittleFS Flag read = 0xFFFE0001
2403
2427
multiResetDetectorFlag = 0xFFFE0001
@@ -2465,7 +2489,7 @@ The following is the sample terminal output when running example [ESP8266WM_MRD_
2465
2489
2466
2490
```
2467
2491
Starting ESP8266WM_MRD_ForcedConfig using LittleFS with SSL on ESP8266_NODEMCU
2468
-
Blynk_WM SSL for ESP8266 v1.4.0
2492
+
Blynk_WM SSL for ESP8266 v1.5.0
2469
2493
ESP_MultiResetDetector v1.1.1
2470
2494
[267] Set CustomsStyle to : <style>div,input{padding:5px;font-size:1em;}input{width:95%;}body{text-align: center;}button{background-color:blue;color:white;line-height:2.4rem;font-size:1.2rem;width:100%;}fieldset{border-radius:0.3rem;margin:0px;}</style>
2471
2495
[289] Set CustomsHeadElement to : <style>html{filter: invert(10%);}</style>
@@ -2553,7 +2577,7 @@ The following is the sample terminal output when running example [ESP32WM_MRD_Co
2553
2577
2554
2578
```
2555
2579
Starting ESP32WM_MRD_Config using LITTLEFS with SSL on ESP32S2_DEV
2556
-
Blynk_WM SSL for ESP32 v1.4.0
2580
+
Blynk_WM SSL for ESP32 v1.5.0
2557
2581
ESP_MultiResetDetector v1.1.1
2558
2582
[134394] Set CustomsStyle to : <style>div,input{padding:5px;font-size:1em;}input{width:95%;}body{text-align: center;}button{background-color:blue;color:white;line-height:2.4rem;font-size:1.2rem;width:100%;}fieldset{border-radius:0.3rem;margin:0px;}</style>
2559
2583
[134417] Set CustomsHeadElement to : <style>html{filter: invert(10%);}</style>
### 9. ESP32WM_MRD_ForcedConfig using LITTLEFS with SSL on ESP32_DEV to demo WiFi Scan
2640
2662
2641
2663
The following is the sample terminal output when running example [ESP32WM_MRD_ForcedConfig](examples/ESP32WM_MRD_ForcedConfig) on **ESP32_DEV** with WiFi Scan for selection in Configuration Portal.
@@ -2644,7 +2666,7 @@ The following is the sample terminal output when running example [ESP32WM_MRD_Fo
2644
2666
2645
2667
```
2646
2668
Starting ESP32WM_MRD_ForcedConfig using LITTLEFS with SSL on ESP32_DEV
2647
-
Blynk_WM SSL for ESP32 v1.4.0
2669
+
Blynk_WM SSL for ESP32 v1.5.0
2648
2670
ESP_MultiResetDetector v1.1.1
2649
2671
[228] Set CustomsStyle to : <style>div,input{padding:5px;font-size:1em;}input{width:95%;}body{text-align: center;}button{background-color:blue;color:white;line-height:2.4rem;font-size:1.2rem;width:100%;}fieldset{border-radius:0.3rem;margin:0px;}</style>
2650
2672
[250] Set CustomsHeadElement to : <style>html{filter: invert(10%);}</style>
Starting ESP32WM_MRD_ForcedConfig using LITTLEFS with SSL on ESP32_DEV
2770
-
Blynk_WM SSL for ESP32 v1.4.0
2792
+
Blynk_WM SSL for ESP32 v1.5.0
2771
2793
ESP_MultiResetDetector v1.1.1
2772
2794
[227] Set CustomsStyle to : <style>div,input{padding:5px;font-size:1em;}input{width:95%;}body{text-align: center;}button{background-color:blue;color:white;line-height:2.4rem;font-size:1.2rem;width:100%;}fieldset{border-radius:0.3rem;margin:0px;}</style>
2773
2795
[249] Set CustomsHeadElement to : <style>html{filter: invert(10%);}</style>
@@ -2885,6 +2907,11 @@ Sometimes, the library will only work if you update the board core to the latest
2885
2907
2886
2908
## Releases
2887
2909
2910
+
### Releases v1.5.0
2911
+
2912
+
1. Fix bug.
2913
+
2. Optimize and sync with [**Blynk_Async_WM library v1.5.0**](https://github.com/khoih-prog/Blynk_Async_WM)
2914
+
2888
2915
### Major Release v1.4.0
2889
2916
2890
2917
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)
@@ -3094,9 +3121,9 @@ Submit issues to: [Blynk_WM issues](https://github.com/khoih-prog/Blynk_WM/issue
3094
3121
28. Configurable **Customs HTML Headers**, including Customs Style, Customs Head Elements, CORS Header
3095
3122
29. Add support to **ESP32-C3 using EEPROM and SPIFFS**
3096
3123
30. Fix SSL issue with Blynk Cloud Server by using SSL in unsecured mode.
3097
-
30. Permit optionally inputting one set of WiFi SSID/PWD by using `REQUIRE_ONE_SET_SSID_PW == true`
3098
-
31. Enforce WiFi PWD minimum length of 8 chars
3099
-
32. Enable **scan of WiFi networks** for selection in Configuration Portal
3124
+
31. Permit optionally inputting one set of WiFi SSID/PWD by using `REQUIRE_ONE_SET_SSID_PW == true`
3125
+
32. Enforce WiFi PWD minimum length of 8 chars
3126
+
33. Enable **scan of WiFi networks** for selection in Configuration Portal
0 commit comments