diff --git a/docs/advancedusage.html b/docs/advancedusage.html index 42dd464..84663e0 100644 --- a/docs/advancedusage.html +++ b/docs/advancedusage.html @@ -261,7 +261,7 @@ Sketch OTA update File system EEPROM WiFi config (SDK)

Also, the placement of the EEPROM area of ESP32 is described in the partition table. So in the default state, the credential storage area used by AutoConnect conflicts with data owned by the user sketch. It will be destroyed together saved data in EEPROM by user sketch and AutoConnect each other. But you can move the storage area to avoid this.

The boundaryOffset in AutoConnectConfig specifies the start offset of the credentials storage area. The default value is 0.

On-demand start the captive portal

-

If you do not usually connect to WiFi and need to establish a WiFi connection if necessary, you can combine the autoRise option with the immediateStart option to achieve on-demand connection. This behavior is similar to the WiFiManager's startConfigPortal function. In order to do this, you usually configure only with AutoConnectConfig in setup() and AutoConnect::begin handles in loop().

+

If you do not usually connect to WiFi and need to establish a WiFi connection if necessary, you can combine the autoRise option with the immediateStart option to achieve on-demand connection. This behavior is similar to the WiFiManager's startConfigPortal function. In order to do this, you usually configure only with AutoConnectConfig in setup() and AutoConnect::begin handles in loop().

AutoConnect       Portal;
 AutoConnectConfig Config;
 
diff --git a/docs/sitemap.xml b/docs/sitemap.xml
index b6ba6cd..a429f64 100644
--- a/docs/sitemap.xml
+++ b/docs/sitemap.xml
@@ -2,127 +2,127 @@
 
     
      https://Hieromon.github.io/AutoConnect/index.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/gettingstarted.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/menu.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/basicusage.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/advancedusage.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/acintro.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/acelements.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/acjson.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/achandling.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/api.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/apiaux.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/apiconfig.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/apielements.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/apiextra.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/howtoembed.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/datatips.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/menuize.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/wojson.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/lsbegin.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/credit.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/acupload.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/colorized.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/faq.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/changelog.html
-     2019-05-29
+     2019-06-05
      daily
     
     
      https://Hieromon.github.io/AutoConnect/license.html
-     2019-05-29
+     2019-06-05
      daily
     
 
\ No newline at end of file
diff --git a/docs/sitemap.xml.gz b/docs/sitemap.xml.gz
index 8b54343..696b41d 100644
Binary files a/docs/sitemap.xml.gz and b/docs/sitemap.xml.gz differ
diff --git a/mkdocs/advancedusage.md b/mkdocs/advancedusage.md
index 7f1cdcf..30bd63b 100644
--- a/mkdocs/advancedusage.md
+++ b/mkdocs/advancedusage.md
@@ -296,7 +296,7 @@ The [**boundaryOffset**](apiconfig.md#boundaryoffset) in [AutoConnectConfig](api
 
 ###  On-demand start the captive portal
 
-If you do not usually connect to WiFi and need to establish a WiFi connection if necessary, you can combine the [**autoRise**](api.md#autorise) option with the [**immediateStart**](api.md#immediatestart) option to achieve on-demand connection. This behavior is similar to the [WiFiManager's startConfigPortal](https://github.com/tzapu/WiFiManager#on-demand-configuration-portal) function. In order to do this, you usually configure only with AutoConnectConfig in *setup()* and [*AutoConnect::begin*](api.md#begin) handles in *loop()*.
+If you do not usually connect to WiFi and need to establish a WiFi connection if necessary, you can combine the [**autoRise**](apiconfig.md#autorise) option with the [**immediateStart**](apiconfig.md#immediatestart) option to achieve on-demand connection. This behavior is similar to the [WiFiManager's startConfigPortal](https://github.com/tzapu/WiFiManager#on-demand-configuration-portal) function. In order to do this, you usually configure only with AutoConnectConfig in *setup()* and [*AutoConnect::begin*](api.md#begin) handles in *loop()*.
 
 ```cpp hl_lines="5 6"
 AutoConnect       Portal;