diff --git a/examples/Async_AM2315_ESP32_SSL/Async_AM2315_ESP32_SSL.ino b/examples/Async_AM2315_ESP32_SSL/Async_AM2315_ESP32_SSL.ino index 8d9feae..c57c879 100644 --- a/examples/Async_AM2315_ESP32_SSL/Async_AM2315_ESP32_SSL.ino +++ b/examples/Async_AM2315_ESP32_SSL/Async_AM2315_ESP32_SSL.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_AM2315_ESP32_SSL/defines.h b/examples/Async_AM2315_ESP32_SSL/defines.h index c511c2b..cf9d616 100644 --- a/examples/Async_AM2315_ESP32_SSL/defines.h +++ b/examples/Async_AM2315_ESP32_SSL/defines.h @@ -108,6 +108,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_AM2315_ESP8266/Async_AM2315_ESP8266.ino b/examples/Async_AM2315_ESP8266/Async_AM2315_ESP8266.ino index ec0052a..81acb89 100644 --- a/examples/Async_AM2315_ESP8266/Async_AM2315_ESP8266.ino +++ b/examples/Async_AM2315_ESP8266/Async_AM2315_ESP8266.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_AM2315_ESP8266/defines.h b/examples/Async_AM2315_ESP8266/defines.h index f30312e..379c9c3 100644 --- a/examples/Async_AM2315_ESP8266/defines.h +++ b/examples/Async_AM2315_ESP8266/defines.h @@ -79,6 +79,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_Blynk_WM_Template/Async_Blynk_WM_Template.ino b/examples/Async_Blynk_WM_Template/Async_Blynk_WM_Template.ino index 41ea7ac..d28609b 100644 --- a/examples/Async_Blynk_WM_Template/Async_Blynk_WM_Template.ino +++ b/examples/Async_Blynk_WM_Template/Async_Blynk_WM_Template.ino @@ -10,7 +10,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -25,6 +25,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ // Sketch uses Arduino IDE-selected ESP32 and ESP8266 to select compile choices @@ -235,6 +236,20 @@ #define CONFIG_TIMEOUT_RETRYTIMES_BEFORE_RESET 3 // Library default is 10 (times 2) - DEBUG SET AT 2 #define RESET_IF_CONFIG_TIMEOUT true + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + // NOT NECESSARY TO MODIFY // COMPILE-TIME LOGIC: AUTOMATIC WIFI LIBRARY SELECTION diff --git a/examples/Async_DHT11ESP32/Async_DHT11ESP32.ino b/examples/Async_DHT11ESP32/Async_DHT11ESP32.ino index fd06434..b0dc1d8 100644 --- a/examples/Async_DHT11ESP32/Async_DHT11ESP32.ino +++ b/examples/Async_DHT11ESP32/Async_DHT11ESP32.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_DHT11ESP32/defines.h b/examples/Async_DHT11ESP32/defines.h index e242445..cca9907 100644 --- a/examples/Async_DHT11ESP32/defines.h +++ b/examples/Async_DHT11ESP32/defines.h @@ -108,6 +108,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_DHT11ESP32_SSL/Async_DHT11ESP32_SSL.ino b/examples/Async_DHT11ESP32_SSL/Async_DHT11ESP32_SSL.ino index f54deab..3b32d56 100644 --- a/examples/Async_DHT11ESP32_SSL/Async_DHT11ESP32_SSL.ino +++ b/examples/Async_DHT11ESP32_SSL/Async_DHT11ESP32_SSL.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_DHT11ESP32_SSL/defines.h b/examples/Async_DHT11ESP32_SSL/defines.h index 2014e29..eef92ac 100644 --- a/examples/Async_DHT11ESP32_SSL/defines.h +++ b/examples/Async_DHT11ESP32_SSL/defines.h @@ -108,6 +108,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_DHT11ESP8266/Async_DHT11ESP8266.ino b/examples/Async_DHT11ESP8266/Async_DHT11ESP8266.ino index f52c759..fbe861f 100644 --- a/examples/Async_DHT11ESP8266/Async_DHT11ESP8266.ino +++ b/examples/Async_DHT11ESP8266/Async_DHT11ESP8266.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_DHT11ESP8266/defines.h b/examples/Async_DHT11ESP8266/defines.h index 1b9c790..8d3e396 100644 --- a/examples/Async_DHT11ESP8266/defines.h +++ b/examples/Async_DHT11ESP8266/defines.h @@ -80,6 +80,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_DHT11ESP8266_Debug/Async_DHT11ESP8266_Debug.ino b/examples/Async_DHT11ESP8266_Debug/Async_DHT11ESP8266_Debug.ino index 22a52a6..be07873 100644 --- a/examples/Async_DHT11ESP8266_Debug/Async_DHT11ESP8266_Debug.ino +++ b/examples/Async_DHT11ESP8266_Debug/Async_DHT11ESP8266_Debug.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_DHT11ESP8266_Debug/defines.h b/examples/Async_DHT11ESP8266_Debug/defines.h index 5cd9899..588bf06 100644 --- a/examples/Async_DHT11ESP8266_Debug/defines.h +++ b/examples/Async_DHT11ESP8266_Debug/defines.h @@ -80,6 +80,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_DHT11ESP8266_SSL/Async_DHT11ESP8266_SSL.ino b/examples/Async_DHT11ESP8266_SSL/Async_DHT11ESP8266_SSL.ino index 6748d99..c779d88 100644 --- a/examples/Async_DHT11ESP8266_SSL/Async_DHT11ESP8266_SSL.ino +++ b/examples/Async_DHT11ESP8266_SSL/Async_DHT11ESP8266_SSL.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_DHT11ESP8266_SSL/defines.h b/examples/Async_DHT11ESP8266_SSL/defines.h index da1bb6f..5e203e4 100644 --- a/examples/Async_DHT11ESP8266_SSL/defines.h +++ b/examples/Async_DHT11ESP8266_SSL/defines.h @@ -82,6 +82,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + + ///////////////////////////////////////////// + + #define REQUIRE_ONE_SET_SSID_PW false + + #define SCAN_WIFI_NETWORKS true + + // To be able to manually input SSID, not from a scanned SSID lists + #define MANUAL_SSID_INPUT_ALLOWED true + + // From 2-15 + #define MAX_SSID_IN_LIST 8 + + ///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP32WM_Config/Async_ESP32WM_Config.ino b/examples/Async_ESP32WM_Config/Async_ESP32WM_Config.ino index 8970e2c..cb1c68d 100644 --- a/examples/Async_ESP32WM_Config/Async_ESP32WM_Config.ino +++ b/examples/Async_ESP32WM_Config/Async_ESP32WM_Config.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP32WM_Config/defines.h b/examples/Async_ESP32WM_Config/defines.h index 732df85..9895e40 100644 --- a/examples/Async_ESP32WM_Config/defines.h +++ b/examples/Async_ESP32WM_Config/defines.h @@ -97,6 +97,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP32WM_ForcedConfig/Async_ESP32WM_ForcedConfig.ino b/examples/Async_ESP32WM_ForcedConfig/Async_ESP32WM_ForcedConfig.ino index d8abafd..a12df45 100644 --- a/examples/Async_ESP32WM_ForcedConfig/Async_ESP32WM_ForcedConfig.ino +++ b/examples/Async_ESP32WM_ForcedConfig/Async_ESP32WM_ForcedConfig.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP32WM_ForcedConfig/defines.h b/examples/Async_ESP32WM_ForcedConfig/defines.h index 083d633..3253a22 100644 --- a/examples/Async_ESP32WM_ForcedConfig/defines.h +++ b/examples/Async_ESP32WM_ForcedConfig/defines.h @@ -97,6 +97,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP32WM_MRD_Config/Async_ESP32WM_MRD_Config.ino b/examples/Async_ESP32WM_MRD_Config/Async_ESP32WM_MRD_Config.ino index 33aef20..e6bd1e7 100644 --- a/examples/Async_ESP32WM_MRD_Config/Async_ESP32WM_MRD_Config.ino +++ b/examples/Async_ESP32WM_MRD_Config/Async_ESP32WM_MRD_Config.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP32WM_MRD_Config/defines.h b/examples/Async_ESP32WM_MRD_Config/defines.h index 18d08ea..c10eb8a 100644 --- a/examples/Async_ESP32WM_MRD_Config/defines.h +++ b/examples/Async_ESP32WM_MRD_Config/defines.h @@ -129,6 +129,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP32WM_MRD_ForcedConfig/Async_ESP32WM_MRD_ForcedConfig.ino b/examples/Async_ESP32WM_MRD_ForcedConfig/Async_ESP32WM_MRD_ForcedConfig.ino index db23a23..176b3e6 100644 --- a/examples/Async_ESP32WM_MRD_ForcedConfig/Async_ESP32WM_MRD_ForcedConfig.ino +++ b/examples/Async_ESP32WM_MRD_ForcedConfig/Async_ESP32WM_MRD_ForcedConfig.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP32WM_MRD_ForcedConfig/defines.h b/examples/Async_ESP32WM_MRD_ForcedConfig/defines.h index 2d9965f..7c1c5a1 100644 --- a/examples/Async_ESP32WM_MRD_ForcedConfig/defines.h +++ b/examples/Async_ESP32WM_MRD_ForcedConfig/defines.h @@ -41,7 +41,7 @@ #define BLYNK_PRINT Serial -#define BLYNK_WM_DEBUG 3 +#define BLYNK_WM_DEBUG 1 #define USING_MRD true @@ -129,11 +129,26 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include -//#define USE_SSL true -#define USE_SSL false +#define USE_SSL true +//#define USE_SSL false #if USE_SSL #include //https://github.com/khoih-prog/Blynk_Async_WM diff --git a/examples/Async_ESP8266WM_Config/Async_ESP8266WM_Config.ino b/examples/Async_ESP8266WM_Config/Async_ESP8266WM_Config.ino index fa584ee..34c8877 100644 --- a/examples/Async_ESP8266WM_Config/Async_ESP8266WM_Config.ino +++ b/examples/Async_ESP8266WM_Config/Async_ESP8266WM_Config.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP8266WM_Config/defines.h b/examples/Async_ESP8266WM_Config/defines.h index a94b5d6..10732a1 100644 --- a/examples/Async_ESP8266WM_Config/defines.h +++ b/examples/Async_ESP8266WM_Config/defines.h @@ -72,6 +72,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP8266WM_ForcedConfig/Async_ESP8266WM_ForcedConfig.ino b/examples/Async_ESP8266WM_ForcedConfig/Async_ESP8266WM_ForcedConfig.ino index 7911d06..58f4983 100644 --- a/examples/Async_ESP8266WM_ForcedConfig/Async_ESP8266WM_ForcedConfig.ino +++ b/examples/Async_ESP8266WM_ForcedConfig/Async_ESP8266WM_ForcedConfig.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP8266WM_ForcedConfig/defines.h b/examples/Async_ESP8266WM_ForcedConfig/defines.h index 58e7d60..950c4bc 100644 --- a/examples/Async_ESP8266WM_ForcedConfig/defines.h +++ b/examples/Async_ESP8266WM_ForcedConfig/defines.h @@ -70,6 +70,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP8266WM_MRD_Config/Async_ESP8266WM_MRD_Config.ino b/examples/Async_ESP8266WM_MRD_Config/Async_ESP8266WM_MRD_Config.ino index 9cb8051..d7b065b 100644 --- a/examples/Async_ESP8266WM_MRD_Config/Async_ESP8266WM_MRD_Config.ino +++ b/examples/Async_ESP8266WM_MRD_Config/Async_ESP8266WM_MRD_Config.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP8266WM_MRD_Config/defines.h b/examples/Async_ESP8266WM_MRD_Config/defines.h index b7a2250..3305cb4 100644 --- a/examples/Async_ESP8266WM_MRD_Config/defines.h +++ b/examples/Async_ESP8266WM_MRD_Config/defines.h @@ -102,6 +102,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/Async_ESP8266WM_MRD_ForcedConfig/Async_ESP8266WM_MRD_ForcedConfig.ino b/examples/Async_ESP8266WM_MRD_ForcedConfig/Async_ESP8266WM_MRD_ForcedConfig.ino index 086643a..ff20c06 100644 --- a/examples/Async_ESP8266WM_MRD_ForcedConfig/Async_ESP8266WM_MRD_ForcedConfig.ino +++ b/examples/Async_ESP8266WM_MRD_ForcedConfig/Async_ESP8266WM_MRD_ForcedConfig.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/Async_ESP8266WM_MRD_ForcedConfig/defines.h b/examples/Async_ESP8266WM_MRD_ForcedConfig/defines.h index 620b8a8..31561a8 100644 --- a/examples/Async_ESP8266WM_MRD_ForcedConfig/defines.h +++ b/examples/Async_ESP8266WM_MRD_ForcedConfig/defines.h @@ -19,7 +19,7 @@ #define BLYNK_PRINT Serial -#define BLYNK_WM_DEBUG 3 +#define BLYNK_WM_DEBUG 1 #define USING_MRD true @@ -102,11 +102,26 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include -#define USE_SSL true -//#define USE_SSL false +//#define USE_SSL true +#define USE_SSL false #if USE_SSL #include //https://github.com/khoih-prog/Blynk_Async_WM diff --git a/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/AsyncMT_AM2315_ESP32_SSL.ino b/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/AsyncMT_AM2315_ESP32_SSL.ino index b5dcc44..1e371bb 100644 --- a/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/AsyncMT_AM2315_ESP32_SSL.ino +++ b/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/AsyncMT_AM2315_ESP32_SSL.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/defines.h b/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/defines.h index ff09ba1..aad88a9 100644 --- a/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/defines.h +++ b/examples/ESP32_MultiTask/AsyncMT_AM2315_ESP32_SSL/defines.h @@ -99,6 +99,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include //You have to download Blynk WiFiManager Blynk_Async_WM library at //https://github.com/khoih-prog/Blynk_Async_WM diff --git a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/AsyncMT_DHT11ESP32.ino b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/AsyncMT_DHT11ESP32.ino index f8d14ca..923f58a 100644 --- a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/AsyncMT_DHT11ESP32.ino +++ b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/AsyncMT_DHT11ESP32.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/defines.h b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/defines.h index 386cc47..1fd5fee 100644 --- a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/defines.h +++ b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32/defines.h @@ -99,6 +99,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/AsyncMT_DHT11ESP32_SSL.ino b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/AsyncMT_DHT11ESP32_SSL.ino index b153a82..7c8b610 100644 --- a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/AsyncMT_DHT11ESP32_SSL.ino +++ b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/AsyncMT_DHT11ESP32_SSL.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/defines.h b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/defines.h index 188698f..c519635 100644 --- a/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/defines.h +++ b/examples/ESP32_MultiTask/AsyncMT_DHT11ESP32_SSL/defines.h @@ -99,6 +99,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/AsyncMT_ESP32WM_Config.ino b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/AsyncMT_ESP32WM_Config.ino index f4cf419..2b3044b 100644 --- a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/AsyncMT_ESP32WM_Config.ino +++ b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/AsyncMT_ESP32WM_Config.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/defines.h b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/defines.h index 41d95ba..477e00f 100644 --- a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/defines.h +++ b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_Config/defines.h @@ -99,6 +99,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/AsyncMT_ESP32WM_ForcedConfig.ino b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/AsyncMT_ESP32WM_ForcedConfig.ino index 74e004e..c648a15 100644 --- a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/AsyncMT_ESP32WM_ForcedConfig.ino +++ b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/AsyncMT_ESP32WM_ForcedConfig.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/defines.h b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/defines.h index 2d32f08..df6a531 100644 --- a/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/defines.h +++ b/examples/ESP32_MultiTask/AsyncMT_ESP32WM_ForcedConfig/defines.h @@ -99,6 +99,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include diff --git a/examples/ESP32_MultiTask/Async_ESP32_MultiTask/Async_ESP32_MultiTask.ino b/examples/ESP32_MultiTask/Async_ESP32_MultiTask/Async_ESP32_MultiTask.ino index c38e7b8..f56553c 100644 --- a/examples/ESP32_MultiTask/Async_ESP32_MultiTask/Async_ESP32_MultiTask.ino +++ b/examples/ESP32_MultiTask/Async_ESP32_MultiTask/Async_ESP32_MultiTask.ino @@ -8,7 +8,7 @@ Based on and modified from Blynk library v0.6.1 (https://github.com/blynkkk/blynk-library/releases) Built by Khoi Hoang (https://github.com/khoih-prog/Blynk_Async_WM) Licensed under MIT license - Version: 1.4.1 + Version: 1.5.0 Version Modified By Date Comments ------- ----------- ---------- ----------- @@ -23,6 +23,7 @@ 1.4.0 K Hoang 19/04/2021 Add LittleFS and SPIFFS support to ESP32-S2. Add support to ESP32-C3 without LittleFS Fix SSL issue with Blynk Cloud Server 1.4.1 K Hoang 24/04/2021 Fix issue of custom Blynk port (different from 8080 or 9443) not working on ESP32 + 1.5.0 K Hoang 25/04/2021 Enable scan of WiFi networks for selection in Configuration Portal ********************************************************************************************************************************/ #include "defines.h" diff --git a/examples/ESP32_MultiTask/Async_ESP32_MultiTask/defines.h b/examples/ESP32_MultiTask/Async_ESP32_MultiTask/defines.h index 33456f5..935515f 100644 --- a/examples/ESP32_MultiTask/Async_ESP32_MultiTask/defines.h +++ b/examples/ESP32_MultiTask/Async_ESP32_MultiTask/defines.h @@ -87,6 +87,21 @@ #define CONFIG_TIMEOUT 120000L #define USE_DYNAMIC_PARAMETERS true + +///////////////////////////////////////////// + +#define REQUIRE_ONE_SET_SSID_PW false + +#define SCAN_WIFI_NETWORKS true + +// To be able to manually input SSID, not from a scanned SSID lists +#define MANUAL_SSID_INPUT_ALLOWED true + +// From 2-15 +#define MAX_SSID_IN_LIST 8 + +///////////////////////////////////////////// + ////////////////////////////////////////// // Those above #define's must be placed before #include