khoih-prog / ESP_WiFiManager

This is an ESP32 / ESP8266 WiFi Connection Manager with fallback web configuration portal. Use this library for configuring ESP32 (including ESP32-S2 and ESP32-C3), ESP8266 modules' WiFi, etc. Credentials at runtime. You can also specify static DNS servers, personalized HostName, fixed or random AP WiFi channel. With examples supporting ArduinoJson
MIT License
371 stars 97 forks source link

Add support for Wifi hidden SSID scanning. #66

Closed eth0up closed 3 years ago

eth0up commented 3 years ago

WifiScan function supports hidden networks if you set a parameter (https://github.com/espressif/arduino-esp32/blob/371f382db7dd36c470bb2669b222adf0a497600d/libraries/WiFi/src/WiFiScan.cpp#L81).

https://github.com/revoxhere/duino-coin/commit/64da14a9c36a3c7fdbb7cb8718a68f57053a28f8

I tested on an esp32 running esp32_iGrill and could see entries for both my hidden SSIDs and non-hidden SSIDs. When configured to use a hidden SSID the network connection was successful.

khoih-prog commented 3 years ago

Thanks for your contribution. This PR will be included in the next new release, certainly with a note for your contribution.

Best Regards,

khoih-prog commented 3 years ago

The new release v1.7.4 has just been published. Your contribution is noted in Contributions and Thanks


Releases v1.7.4

  1. Add WiFi scanning of hidden SSIDs. Check Add support for Wifi hidden SSID scanning. #66