From 0bfa63a38855e02533cb808adf1c6ce795228be4 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Sat, 13 Jul 2019 19:40:09 +0900 Subject: [PATCH] Added description of captive portal activation with no password. PR #106 --- mkdocs/advancedusage.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mkdocs/advancedusage.md b/mkdocs/advancedusage.md index 2cf3c3e..6ccf77a 100644 --- a/mkdocs/advancedusage.md +++ b/mkdocs/advancedusage.md @@ -451,6 +451,9 @@ void setup() { } ``` +You can also assign no password to SoftAP launched as a captive portal. Assigning a null string as `String("")` to [AutoConnectConfig::psk](apiconfig.md#psk) does not require a password when connecting to SoftAP. +But this method is not recommended. The broadcast radio of SSID emitted from SoftAP will leak and reach several tens of meters. + ### Relocate the AutoConnect home path A home path of AutoConnect is **/\_ac** by default. You can access from the browser with http://IPADDRESS/\_ac. You can change the home path by revising [**AUTOCONNECT_URI**](https://github.com/Hieromon/AutoConnect/blob/master/src/AutoConnectDefs.h#L62) macro in the include header file as [AutoConnectDef.h](https://github.com/Hieromon/AutoConnect/blob/master/src/AutoConnectDef.h).