Initial commit

pull/8/head
Hieromon Ikasamo 6 years ago
parent 7d19f2da8a
commit 6e7607226f
  1. 33
      .travis.yml
  2. 21
      LICENSE
  3. 341
      docs/api.md
  4. 38
      docs/css/paragraph.css
  5. 36
      docs/examples.md
  6. 156
      docs/faq.md
  7. 67
      docs/gettingstarted.md
  8. 720
      docs/images/BeforeAfter.svg
  9. BIN
      docs/images/PageBuilder.png
  10. BIN
      docs/images/_ac.png
  11. BIN
      docs/images/ac2.gif
  12. 93
      docs/images/arduino-logo.svg
  13. BIN
      docs/images/arrow_right.png
  14. 76
      docs/images/arrow_right.svg
  15. BIN
      docs/images/config_ssid.png
  16. BIN
      docs/images/cp.gif
  17. BIN
      docs/images/espshaker.gif
  18. BIN
      docs/images/established.png
  19. 695
      docs/images/handleClient.svg
  20. 697
      docs/images/handlePortal.svg
  21. BIN
      docs/images/hello_world.png
  22. BIN
      docs/images/ins_lib.png
  23. BIN
      docs/images/lm.png
  24. 504
      docs/images/logic_sequence.svg
  25. BIN
      docs/images/login.png
  26. BIN
      docs/images/login_ani.gif
  27. BIN
      docs/images/menu.png
  28. BIN
      docs/images/menu_home.png
  29. BIN
      docs/images/menu_login.png
  30. 667
      docs/images/menu_login.svg
  31. BIN
      docs/images/newap.png
  32. BIN
      docs/images/open.png
  33. BIN
      docs/images/ov.gif
  34. BIN
      docs/images/ov.png
  35. 439
      docs/images/ov.svg
  36. BIN
      docs/images/reset.png
  37. BIN
      docs/images/resetting.png
  38. BIN
      docs/images/serial.png
  39. BIN
      docs/images/stat.png
  40. 84
      docs/index.md
  41. 1
      docs/js/gifffer.min.js
  42. 15
      docs/license.md
  43. 52
      docs/menu.md
  44. 282
      docs/usage.md
  45. 144
      examples/Credential/Credential.ino
  46. 251
      examples/FSBrowser/FSBrowser.ino
  47. 502
      examples/FSBrowser/LICENSE
  48. 3
      examples/FSBrowser/data/edit.htm
  49. BIN
      examples/FSBrowser/data/edit.htm.gz
  50. BIN
      examples/FSBrowser/data/favicon.ico
  51. BIN
      examples/FSBrowser/data/graphs.js.gz
  52. 98
      examples/FSBrowser/data/index.htm
  53. 3
      examples/FSBrowser/data/sub1/edit.htm/edit.htm
  54. 97
      examples/FSBrowser/data/sub2/index.htm
  55. 97
      examples/HandleClient/HandleClient.ino
  56. 97
      examples/HandlePortal/HandlePortal.ino
  57. 117
      examples/HandlePortalEX/HandlePortalEX.ino
  58. 55
      examples/Simple/Simple.ino
  59. 31
      keywords.txt
  60. 13
      library.json
  61. 10
      library.properties
  62. 76
      mkdocs.yml
  63. 584
      src/AutoConnect.cpp
  64. 290
      src/AutoConnect.h
  65. 276
      src/AutoConnectCredentail.cpp
  66. 49
      src/AutoConnectCredentail.h
  67. 1059
      src/AutoConnectPage.cpp
  68. 71
      src/AutoConnectPage.h

@ -0,0 +1,33 @@
sudo: required
dist: trusty
group: deprecated-2017Q4
language: c
env:
- BD=esp8266:esp8266:nodemcuv2:CpuFrequency=160,FlashSize=4M3M
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16"
- sleep 3
- export DISPLAY=:1.0
- wget http://downloads.arduino.cc/arduino-1.8.2-linux64.tar.xz
- tar xf arduino-1.8.2-linux64.tar.xz
- sudo mv arduino-1.8.2 /usr/local/share/arduino
- sudo ln -s /usr/local/share/arduino/arduino /usr/local/bin/arduino
install:
- ln -s $PWD /usr/local/share/arduino/libraries/AutoConnect
- arduino --pref "boardsmanager.additional.urls=http://arduino.esp8266.com/stable/package_esp8266com_index.json" --save-prefs
- arduino --install-boards esp8266:esp8266
- arduino --board $BD --save-prefs
- arduino --pref "compiler.warning_level=all" --save-prefs
- arduino --install-library "PageBuilder"
script:
- arduino --verify --board $BD $PWD/examples/Credential/Credential.ino
- arduino --verify --board $BD $PWD/examples/FSBrowser/FSBrowser.ino
- arduino --verify --board $BD $PWD/examples/HandleClient/HandleClient.ino
- arduino --verify --board $BD $PWD/examples/HandlePortal/HandlePortal.ino
- arduino --verify --board $BD $PWD/examples/HandlePortalEX/HandlePortalEX.ino
- arduino --verify --board $BD $PWD/examples/Simple/Simple.ino
notifications:
email:
on_success: change
on_failure: change

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 Hieromon Ikasamo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -0,0 +1,341 @@
## Include headers
### <i class="fa fa-code"></i> AutoConnect.h
```cpp
#include <AutoConnect.h>
```
#### Define macros
```cpp
#define AC_DEBUG // Monitor message output activation
#define AC_DEBUG_PORT Serial // Default message output device
#define AUTOCONNECT_AP_IP 0x01F4A8C0 // Default SoftAP IP
#define AUTOCONNECT_AP_GW 0x01F4A8C0 // Default SoftAP Gateway IP
#define AUTOCONNECT_AP_NM 0x00FFFFFF // Default subnet mask
#define AUTOCONNECT_DNSPORT 53 // Default DNS port at captive portal
#define AUTOCONNECT_MENU_TITLE "AutoConnect" // Default AutoConnect menu title
#define AUTOCONNECT_URI "/_ac" // Default AutoConnect root path
```
## AutoConnect API
### <i class="fa fa-code"></i> Constructors
#### AutoConnect
```cpp
AutoConnect()
```
AutoConnect default constructor. This entry activates WebServer internally and the web server is allocated internal.
```cpp
AutoConnect(ESP8266WebServer& webServer)
```
Run the AutoConnect site using the externally ensured ESP 8266 WebServer. User's added URI handler response can be included in handleClient method.
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">webServer</span>A reference of ESP8266WebServer instance.</dd>
</dl>
### <i class="fa fa-code"></i> Public member functions
#### begin
```cpp
bool begin()
```
```cpp
bool begin(const char* ssid, const char* passphraase)
```
```cpp
bool begin(const char* ssid, const char* passphraase, unsinged long timeout)
```
Starts establishing WiFi connection. Before establishing, start the Web server and DNS server for the captive portal. Then begins connection establishment in WIFI_STA mode. If connection can not established with the specified SSID and password, switch to WIFI_AP_STA mode and activate SoftAP.
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">ssid</span>SSID to be connected.</dd>
<dd><span class="apidef">passphrase</span>Password for connection.</dd>
<dd><span class="apidef">timeout</span>A time out value in milliseconds for waiting connection.</dd>
<dt>**Return value**</dt>
<dd><span class="apidef">true</span>Connection established, AutoConnect service started with WIFI_STA mode.</dd>
<dd><span class="apidef">false</span>Could not connected, Captive portal started with WIFI_AP_STA mode.</dd>
</dl>
#### config
```cpp
bool config(AutoConnectConfig& config)
```
```cpp
bool config(const char* ap, const char* password = nullptr)
```
Sets SoftAP's WiFi configuration.
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">config</span>Reference to AutoConnectConfig containing SoftAP's parameters.</dd>
<dd><span class="apidef">ap</span>SSID for SoftAP. The default value is **esp8266ap**.</dd>
<dd><span class="apidef">password</span>Password for SodtAP. The default value is **12345678**.</dd>
<dt>**Return value**</dt>
<dd><span class="apidef">true</span>Successfully configured.</dd>
<dd><span class="apidef">false</span>Configuration parameter is invalid, some values out of range.</dd>
</dl>
#### end
```cpp
void end()
```
Stops AutoConnect captive portal service. Release ESP8266WebServer and DNSServer.
!!! warning "Attention to end"
The end function releases the instance of ESP8266WebServer and DNSServer. It can not process them after the end function.
#### handleClient
```cpp
void handleClient()
```
Handling for the AutoConnect web interface. Invoke the handleClient of the parent web server to process client request of the AutoConnect WEB interface. No effects when the web server is not available.
#### handleRequest
```cpp
void handleRequest()
```
Handling for the AutoConnect menu request.
!!! warning "About used in combination with handleClient"
The handleRequest function is not supposed to use with AutoConnect::handleClient. It should be used with ESP8266::handleClient.
#### home
```cpp
void home(String uri)
```
Put a user site's home URI. The URI specified by home is linked from "HOME" in the AutoConnect portal menu.
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">uri</span> A URI string of user site's home path.</dd>
</dl>
#### host
Returns the reference of the ESP8266WebServer which is allocated in AutoConnect automatically.
```cpp
ESP8266WebServer& host()
```
<dl class="apidl">
<dt>**Return value**</dt>
<dd>A reference of the ESP8266WebServer.</dd>
</dl>
!!! note "&reference is not a pointer"
A reference cannot be re-assigned, and must be assigned at initialization. It's like as bind as alias.
```cpp
ESP8266WebServer& server = portal.host();
server.handleClient();
```
or
```cpp
portal.host().handleClient();
```
#### onDetect
```cpp
void onDetect(DetectExit_ft fn)
```
Register the function which will call from AutoConnect at the start of the captive portal.
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">fn</span>Function called at the captive portal start.</dd>
</dl>
An *fn* specifies the function called when the captive portal starts. Its prototype declaration is defined as "*DetectFunc_ft*".
```cpp
typedef std::function<bool(IPAddress softapIP)> DetectExit_ft
```
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">softapIP</span>An IP address of SoftAP for the captive portal.</dd>
<dt>**Retuen value**</dt>
<dd><span class="apidef">true</span>Continues captive portal handling.</dd>
<dd><span class="apidef">false</span>Cancel the captive portal. AutoConnect::begin function will return with a false.</dd>
</dl>
#### onNotFound
```cpp
void onNotFound(ESP8266WebServer::THandlerFunction fn)
```
Register the handler function for undefined URL request detected.
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">fn</span>A function of the "not found" handler.</dd>
</dl>
## AutoConnectConfig API
### <i class="fa fa-code"></i> Constructor
#### AutoConnectConfig
```cpp
AutoConnectConfig();
```
```cpp
AutoConnectConfig(const char* ap, const char* password);
```
<dl class="apidl">
<dt>**Parameters**</dt>
<dd><span class="apidef">ap</span>SSID for SoftAP. The length should be up to 31. The default value is **esp8266ap**.</dd>
<dd><span class="apidef">password</span>Password for SodtAP. The length should be from 8 to up to 63. The default value is **12345678**.</dd>
</dl>
### <i class="fa fa-code"></i> Public member variables
#### apid
SoftAP's SSID.
<dl class="apidl">
<dt>**Type**</dt>
<dd>String</dd>
</dl>
#### apip
Sets IP address for Soft AP in captive portal. When AutoConnect fails the initial WiFi.begin, it starts the captive portal with the IP address specified this.
<dl class="apidl">
<dt>**Type**</dt>
<dd>IPAddress</dd>
</dl>
#### autoReset
Reset ESP8266 module automatically when WLAN disconnected.
<dl class="apidl">
<dt>**Type**</dt>
<dd>bool</dd>
<dt>**Value**</dt>
<dd><span class="apidef" style="width:230px;">true</span>Reset after WiFi disconnected automatically.</dd>
<dd><span class="apidef" style="width:230px;">false</span>No reset.</dd>
</dl>
#### autoSave
The credential saved automatically at the connection establishment.
<dl class="apidl">
<dt>**Type**</dt>
<dd>AC_SAVECREDENTIAL_t</dd>
<dt>**Value**</dt>
<dd><span class="apidef" style="width:230px;">AC_SAVECREDENTIAL_AUTO</span>The credential saved automatically.</dd>
<dd><span class="apidef" style="width:230px;">AC_SAVECREDENTIAL_NEVER</span>The credential no saved.</dd>
</dl>
#### channel
The channel number of WIFi when SoftAP starts.
<dl class="apidl">
<dt>**Type**</dt>
<dd>uint8_t</dd>
<dt>**Value**</dt>
<dd>1 ~ 14. The default value is 1.</dd>
</dl>
!!! info "See Application note"
Espressif Systems had announced the [application note](https://www.espressif.com/sites/default/files/esp8266_wi-fi_channel_selection_guidelines.pdf) about Wi-Fi channel selection.
#### gateway
Sets gateway address for Soft AP in captive portal. When AutoConnect fails the initial WiFi.begin, it starts the captive portal with the IP address specified this.
<dl class="apidl">
<dt>**Type**</dt>
<dd>IPAddress</dd>
</dl>
#### hidden
Sets SoftAP to hidden SSID.
<dl class="apidl">
<dt>**Type**</dt>
<dd>uint8_t</dd>
<dt>**Value**</dt>
<dd><span class="apidef" style="width:230px;">0</span>SSID will be appeared. This is the default.</dd>
<dd><span class="apidef" style="width:230px;">1</span>SSID will be hidden.</dd>
</dl>
#### homeUri
Sets the home path of user sketch. This path would be linked from 'HOME' in the AutoConnect menu.
<dl class="apidl">
<dt>**Type**</dt>
<dd>String</dd>
</dl>
#### netmask
Sets subnet mask for Soft AP in captive portal. When AutoConnect fails the initial WiFi.begin, it starts the captive portal with the IP address specified this.
<dl class="apidl">
<dt>**Type**</dt>
<dd>IPAddress</dd>
</dl>
#### psk
Sets password for SoftAP. The length should be from 8 to up to 63. The default value is **12345678**.
<dl class="apidl">
<dt>**Type**</dt>
<dd>String</dd>
</dl>
### <i class="fa fa-code"></i> AutoConnectConfig example
```arduino
AutoConenct Portal;
AutoConenctConfig Config("", "passpass"); // SoftAp name is determined at runtime
Config.apid = ESP.hostname(); // Retrieve host name to SotAp identification
Config.apip = IPAddress(192,168,10,101); // Sets SoftAP IP address
Config.gateway = IPAddress(192,168,10,1); // Sets WLAN router IP address
Config.netmask = IPAddress(255,255,255,0); // Sets WLAN scope
Config.autoSave = AC_SAVECREDENTIAL_NEVER; // No save credential
Config.homeUri = "/index.html" // Sets home path of the sketch application
Portal.config(Config); // Configure AutoConnect
Portal.begin(); // Starts and behaves captive portal
```
## <i class="fa fa-gift"></i> Something extra
The library presents two PNG icons which can be used to embed a hyperlink to the AutoConnect menu.
- Bar type <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAApklEQVRYR2NkGGDAOMD2M4w6YDQEkEMgEJggZwCxGI0T5mug+alAvBFkD7IDXtLBcpjfXgEZ4ugOeAETpHEIgIwHeVYC3QH+0CgAS9AQgCwHRcFmdAfQ0E7cRo9mw0EVAqPlAKhwEKVTVsBZDsyiQ2k4Wg6gxPKgyoZ0Sn+o1iCHQBBQaiYQi9DYJTjbAyAJWluOtz0wWg7QOOqxGz+aDUdDYMBDAACA0x4hs/MPrwAAAABJRU5ErkJggg==" title="AutoConnect menu" alt="AutoConnect menu" />
- Cog type <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAC2klEQVRIS61VvWsUQRSfmU2pon9BUIkQUaKFaCBKgooSb2d3NSSFKbQR/KrEIiIKBiGF2CgRxEpjQNHs7mwOUcghwUQ7g58IsbGxEBWsb2f8zR177s3t3S2cA8ftzPu993vzvoaSnMu2vRKlaqgKp74Q/tE8qjQPyHGcrUrRjwlWShmDbFMURd/a6TcQwNiYUmpFCPElUebcuQ2vz6aNATMVReHEPwzfSSntDcNwNo2rI+DcvQzhpAbA40VKyV0p1Q9snzBG1qYVcYufXV1sREraDcxpyHdXgkfpRBj6Uwm2RsC5dxxmZ9pdOY9cKTISRcHTCmGiUCh4fYyplTwG2mAUbtMTBMHXOgK9QfyXEZr+TkgQ1oUwDA40hEgfIAfj+HuQRaBzAs9eKyUZ5Htx+T3ZODKG8DzOJMANhmGomJVMXPll+hx9UUAlzZrJJ4QNCDG3VEfguu7mcpmcB/gkBOtShhQhchAlu5jlLUgc9ENgyP5gf9+y6LTv+58p5zySkgwzLNOIGc8sEoT1Lc53NMlbCQQuvMxeCME1NNPVVkmH/i3IzzXDtCSA0qQQwZWOCJDY50jsQRjJmkslEOxvTcDRO6zPxOh5xZglKkYLhWM9jMVnkIsTyMT6NBj7IbOCEjm6HxNVVTo2WXqEWJZ1T8rytB6GxizyDkPhWVpBqfiXUtbo/HywYJSpA9kMamNNPZ71R9Hcm+TMHHZNGw3EuraXEUldbfvw25UdOjqOt+JhMwJd7+jSTpZaEiIcaCDwPK83jtWnTkwnunFMtxeL/ge9r4XItt1RNNaj/0GAcV2bR3U5sG3nEh6M61US+Qrfd9Bs31GGulI2GOS/8dgcQZV1w+ApjIxB7TDwF9GcNzJzoA+rD0/8HvPnXQJCt2qFCwbBTfRI7UyXumWVt+HJ9NO4XI++bdsb0YyrqXmlh+AWOLHaLqS5CLQR5EggR3YlcVS9gKeH2hnX8r8Kmi1CAsl36QAAAABJRU5ErkJggg==" title="AutoConnect menu" alt="AutoConnect menu" />
To reference the icon, use the **AUTOCONNECT_LINK** macro in the sketch. It expands into the string literal as an HTML ```<a></a>``` tag with PNG embedded of the AutoConnect menu hyperlinks. Icon type is specified by the parameter of the macro.
<dl class="apidl">
<dd><span class="apidef">BAR_32</span>Bars icon, 32x32.</dd>
<dd><span class="apidef">BAR_48</span>Bars icon, 48x48.</dd>
<dd><span class="apidef">COG_24</span>Cog icon, 24x24.</dd>
<dd><span class="apidef">COG_32</span>Cog icon, 32x32.</dd>
</dl>
!!! note "Usage"
```arduino
String html = "<html>";
html += AUTOCONNECT_LINK(BAR_32);
html += "</html>";
server.send(200, "text/html", html);
```

@ -0,0 +1,38 @@
.lead {
color: gray;
font-size: 15px;
}
.md-typeset h2 {
border-bottom: solid 1px #d3d3d3;
padding-bottom: 5px;
}
.md-typeset pre {
font-size: 12px;
}
.md-typeset .codehilitetable {
margin-left:-20px;
margin-right: -20px;
border-radius: 0;
}
.md-typeset .codehilitetable .linenodiv {
background-color: #364549 !important;
}
.md-typeset .codehilitetable .linenodiv pre {
background-color: #364549 !important;
color: #aaa;
margin: 0;
}
.apidef {
display: inline-block;
width: 100px;
}
.apidl {
margin-left: 20px;
}

@ -0,0 +1,36 @@
## How to embed the AutoConnect
Here holds two case examples. Both examples perform the same function. Only how to incorporate the **AutoConnect** into the sketch differs. Also included in the sample folder, HandlePortal.ino also shows how to use the [PageBuilder](https://github.com/Hieromon/PageBuilder) library for HTML assemblies.
## What does this example do?
Uses the web interface to light the LED connected to the **[NodeMCU](https://github.com/nodemcu/nodemcu-devkit-v1.0)** module D0 port (which could be referred to as *BUILTIN_LED*), the following animation is it.
Access to the ESP8266 module connected WiFi from the browser then the page contains the current value of the D0 port would be displayed. The page has the buttons to switch the port value. The LED blinks according to the value of the button that was clicked. This example is a typical sketch of manipulating ESP8266's GPIO via WLN.
<img data-gifffer="/images/ac2.gif" />
Embed AutoConnect library into this sketch. There are few places to be changed. And you can use AutoConnect's captive portal function to establish a connection freely to other WiFi spots.
## Embed AutoConnect
### <i class="fa fa-code" aria-hidden="true"></i> Pattern A.
Bind to ESP8266WebServer, performs handleClient with handleRequest.
<img src="/images/handleClient.svg" />
!!! hint "In what situations should the handleRequest be used."
It is something needs to be done immediately after the handle client. It is better to call only AutoConnect::handleClient whenever possible.
### <i class="fa fa-code" aria-hidden="true"></i> Pattern B.
Declare only AutoConnect, performs handleClient.
<img src="/images/handlePortal.svg" />
<script>
window.onload = function() {
Gifffer();
}
</script>

@ -0,0 +1,156 @@
## <i class="fa fa-question-circle"></i> After connected, AutoConnect menu performs but no happens.
If you can access the **AutoConnect root path** as http://ESP8266IPADDRESS/_ac from browser, probably the sketch uses *ESP8266WebServer::handleClient()* without *AutoConnect::handleRequest()*.
For AutoConnect menus to work properly, call *AutoConnect::handleRequest()* after *ESP8266WebServer::handleClient()* invoked, or use *AutoConnect::handleClient()*. *AutoConnect::handleClient()* is equivalent *ESP8266WebServer::handleClient* combinated *AutoConnect::handleRequest()*.
## <i class="fa fa-question-circle"></i> An esp8266ap as SoftAP was connected but Captive portal does not start.
Captive portal detection could not be trapped. It is necessary to disconnect and reset ESP8266 to clear memorized connection data in ESP8266. Also, It may be displayed on the smartphone if the connection information of esp8266ap is wrong. In that case, delete the connection information of esp8266ap memorized by the smartphone once.
## <i class="fa fa-question-circle"></i> Does not appear esp8266ap in smartphone.
Maybe it is successfully connected at the **first WiFi.begin**. ESP8266 remembers the SSID successfully connected and will use at the next. It means SoftAP will only start up when the first *WiFi.begin()* fails.
The saved SSID would be cleared by *WiFi.disconnect()* with WIFI_STA mode. If you do not want automatic reconnection, you can erase the memorized SSID with the following simple sketch.
```arduino
#include <ESP8266WiFi.h>
void setup() {
delay(1000);
Serial.begin(115200);
WiFi.mode(WIFI_STA);
delay(100);
WiFi.begin();
if (WiFi.waitForConnectResult() == WL_CONNECTED) {
WiFi.disconnect();
while (WiFi.status() == WL_CONNECTED)
delay(100);
}
Serial.println("WiFi disconnected.");
}
void loop() {
delay(1000);
}
```
??? hint "You can interactively check the WiFi state of ESP8266."
Please try [**ESPShaker**](https://github.com/Hieromon/ESPShaker). It is ESP8266 interactive serial command processor.
<img src="/images/espshaker.gif" />
## <i class="fa fa-question-circle"></i> Does not response from \_ac.
Probably **WiFi.begin** failed with the specified SSID. Activating the [debug printing](usage.md#debug-print) will help you to track down the cause.
## <i class="fa fa-question-circle"></i> How change esp8266ap for SSID name in Captive portal?
An **esp8266** is default SSID name for SoftAP of captive portal and password is **12345678**. You can change both by using [AutoConnectConfig](api.md#string-apid).
## <i class="fa fa-question-circle"></i> Hang up after Reset?
If ESP8266 hang up after reset by AutoConnect menu, perhaps manual reset is not yet. Especially if it is not manual reset yet after uploading the sketch, the boot mode will stay 'Uart Download'. There is some discussion about this on the Github's ESP8266 core: https://github.com/esp8266/Arduino/issues/1017
If you received the following message, the boot mode is still sketch uploaded. It needs to the manual reset once.
```
ets Jan 8 2013,rst cause:2, boot mode:(1,6) or (1,7)
ets Jan 8 2013,rst cause:4, boot mode:(1,6) or (1,7)
wdt reset
```
The correct boot mode for starting the sketch is **(3, x)**.
## <i class="fa fa-question-circle"></i> How erase the credentials saved in EEPROM?
Make some sketches for erasing the EEPROM area, or some erasing utility is needed. You can prepare the sketch to erase the saved credential with *AutoConnectCredential*. The *AutoConnectCrendential* class provides the access method to the saved credential in EEPROM and library source file is including it.
A class description of AutoConnectCredentail is follows.
### Constructor
```cpp
#include <AutoConnectCredential.h>
AutoConnectCredential();
```
### Public member functions
- uint8_t **entries()**
Returns number of entries as contained credentials.
- int8_t **load(const char\* _ssid_, struct station_config\* _config_)**
Load a credential entry specified *ssid* to *config*. Returns -1 as unsuccessfully loaded.
- bool **load(int8_t _entry_, struct station_config\* _config_)**
Load a credential entry to *config*. The *entry* parameter specify to index of the entry.
- bool **save(const struct station_config\* _config_)**
Save a credential entry stored in *config* to EEPROM. Returns the true as succeeded.
- bool **del(const char\* _ssid_)**
Delete a credential entry specified *ssid*. Returns the true as successfully deleted.
### Data structures
- station_config
A structure is included in the ESP8266 SDK. You can use it in the sketch like as follows.
```cpp
extern "C" {
#include <user_interface.h>
}
```
```cpp
struct station_config {
uint8 ssid[32];
uint8 password[64];
uint8 bssid_set;
uint8 bssid[6];
};
```
- EEPROM data structure
A data structure of the credential saving area in EEPROM as the below. [^1]
[^1]:
There may be 0xff as an invalid data in the credential saving area. The 0xff area would be reused.
| Byte offset | Length | Value |
|-------------|----------|---------------------------------------------------------------------|
| 0 | 8 | AC_CREDT |
| 8 | 1 | Number of contained entries (uint8_t) |
| 9 | 2 | Container size, excluding size of AC_CREDT and size of the number of entries(width for uint16_t type). |
| 11 | variable | SSID terminated by 0x00. Max length is 32 bytes. |
| variable | variable | Password plain text terminated by 0x00. Max length is 64 bytes. |
| variable | 6 | BSSID |
| variable | | Contained the next entries. (Continuation SSID+Password+BSSID) |
| variable | 1 | 0x00. End of container. |
!!! hint
With the [**ESPShaker**](https://github.com/Hieromon/ESPShaker), you can access EEPROM interactively from the serial monitor, and of course you can erase saved credentials.
## <i class="fa fa-question-circle"></i> How locate the link button to the AutoConnect menu?
Link button to AutoConnect menu can be embedded into Sketch's web page. The root path of the menu is **/_ac** by default and embed the following ```<a></a>``` tag in the generating HTML.
```html
<a style="background-color:SteelBlue; display:inline-block; padding:7px 13px; text-decoration:none;" href="/_ac">MENU</a>
```
## <i class="fa fa-question-circle"></i> How much memory consumption is AutoConnect?
### Sketch size
It increases about 57K bytes compared to the case without AutoConnect. A sketch size of the most simple example introduced at the Getting started is about 330K bytes. (270K byte without AutoConnect)
### Heap size
It consumes about 2K bytes in the static and about 12K bytes are consumed at the moment when menu executed.
## <i class="fa fa-question-circle"></i> I cannot complete to Wi-Fi login from smartphone.
Because AutoConnect does not send a login success response to the captive portal requests from the smartphone. The login success response varies iOS, Android and Windows. By analyzing the request URL of different login success inquiries for each OS, the correct behavior can be implemented, but not yet. Please resets ESP8266 from the AutoConnect menu.

@ -0,0 +1,67 @@
## Let's do the most simple sketch
Open the Arduino IDE, write the following sketch and upload it. The feature of this sketch is that the SSID and Password are not coded.
```arduino
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <AutoConnect.h>
ESP8266WebServer Server;
AutoConnect Portal(Server);
void rootPage() {
char content[] = "Hello, world";
Server.send(200, "text/plain", content);
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
Server.on("/", rootPage);
if (Portal.begin()) {
Serial.println("WiFi connected: " + WiFi.localIP().toString());
}
}
void loop() {
Portal.handleClient();
}
```
### <i class="fa fa-play-circle"></i> Run at first
After about 30 seconds, if the ESP8266 cannot connect to nearby Wi-Fi spot, you pull out your smartphone and open *Wi-Fi settings* from the *Settings* Apps. You can see the **esp8266ap** in the list of *"CHOOSE A NETWORK..."*. Then tap the esp8266ap and enter password **12345678**, a something screen pops up automatically as shown below.
<span style="display:inline-block;width:282px;height:501px;border:1px solid lightgrey;"><img data-gifffer="/images/login_ani.gif" data-gifffer-width="280" style="width:280px;" /></span><img src="/images/arrow_right.svg" style="vertical-align:top;padding-top:120px;width:48px;margin-left:30px;margin-right:30px;" /><img src="/images/stat.png" style="border:1px solid lightgrey;width:280px;" /></span>
This is the AutoConnect statistics screen. This screen displays the current status of the established connection, WiFi mode, IP address, free memory size, and etc. Also, the **hamburger icon** is the control menu of AutoConnect seems at the upper right. By tap the hamburger icon, the control menu appears as the below.
### <i class="fa fa-cog"></i> Join to the new access point
Here, tap *"Configure new AP"* to connect the new access point then the SSID configuration screen would be shown. Enter the **SSID** and **Passphrase** and tap **apply** to start connecting the access point.
<img src="/images/menu_login.png" style="border:1px solid lightgrey;width:280px;" /><img src="/images/arrow_right.svg" style="vertical-align:top;padding-top:120px;width:48px;margin-left:30px;margin-right:30px;" /><img src="/images/config_ssid.png" style="border:1px solid lightgrey;width:280px;" />
### <i class="fa fa-rss"></i> Connection establishment
After connection established, the current status screen will appear. It is already connected to WLAN with WiFi mode as WIFI\_AP\_STA and the IP connection status is displayed there including the SSID. Then at this screen, you have two options for the next step.
For one, continues execution of the sketch while keeping this connection. You can access ESP8266 via browser through the established IP address after cancel to "**Log in**" by upper right on the screen.
Or, "**RESET**" can be selected. The ESP8266 resets and reboots. After that, immediately before the connection will be restored automatically with WIFI\_STA mode.
<img src="/images/established.png" style="border:1px solid lightgrey;width:280px;" /><img src="/images/arrow_right.svg" style="vertical-align:top;padding-top:120px;width:48px;margin-left:30px;margin-right:30px;" /><img src="/images/reset.png" style="border:1px solid lightgrey;width:280px;" />
### <i class="fa fa-play-circle"></i> Run for usually
The IP address of ESP8266 would be displayed on the serial monitor after connection recovered. Please access its address from the browser. The "Hello, world" page will respond. It's the page that was handled by in the sketch with "**on**" function of *ESP8266WebServer*.
<img src="/images/serial.png" style="vertical-align:top;" /><img src="/images/arrow_right.svg" style="vertical-align:top;padding-top:60px;width:48px;margin-left:45px;margin-right:30px;" /><img src="/images/hello_world.png" style="border:1px solid lightgrey;width:280px;" />
<script>
window.onload = function() {
Gifffer();
}
</script>

@ -0,0 +1,720 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 278.73105 210.63869"
height="210.63869mm"
width="278.73105mm">
<defs
id="defs2">
<marker
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible">
<path
id="path6600"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible">
<path
id="path6582"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
orient="auto"
refY="0"
refX="0"
id="Tail"
style="overflow:visible">
<g
id="g6627"
transform="scale(-1.2)"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1">
<path
id="path6615"
d="M -3.8048674,-3.9585227 0.54352094,0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" />
<path
id="path6617"
d="M -1.2866832,-3.9585227 3.0617053,0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" />
<path
id="path6619"
d="M 1.3053582,-3.9585227 5.6537466,0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" />
<path
id="path6621"
d="M -3.8048674,4.1775838 0.54352094,0.21974226"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" />
<path
id="path6623"
d="M -1.2866832,4.1775838 3.0617053,0.21974226"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" />
<path
id="path6625"
d="M 1.3053582,4.1775838 5.6537466,0.21974226"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-linecap:round;stroke-opacity:1" />
</g>
</marker>
<linearGradient
id="linearGradient6499"
osb:paint="solid">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop6497" />
</linearGradient>
<marker
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-9"
style="overflow:visible">
<path
id="path6600-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
</marker>
</defs>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="layer4">
<path
transform="translate(81.157196,-138.76399)"
d="M 68.550633,144.7085 V 349.40267 M 73.842303,144.7085 V 349.40267 M 79.133963,144.7085 V 349.40267 M 84.425633,144.7085 V 349.40267 M 89.717303,144.7085 V 349.40267 M 95.008953,144.7085 V 349.40267 M 100.30059,144.7085 V 349.40267 M 105.59223,144.7085 V 349.40267 M 110.88386,144.7085 V 349.40267 M 116.17552,144.7085 V 349.40267 M 121.46719,144.7085 V 349.40267 M 126.75885,144.7085 V 349.40267 M 132.05052,144.7085 V 349.40267 M 137.34219,144.7085 V 349.40267 M 142.63385,144.7085 V 349.40267 M 147.92552,144.7085 V 349.40267 M 153.21719,144.7085 V 349.40267 M 158.50885,144.7085 V 349.40267 M 163.80052,144.7085 V 349.40267 M 169.09219,144.7085 V 349.40267 M 174.38385,144.7085 V 349.40267 M 179.67552,144.7085 V 349.40267 M 184.96719,144.7085 V 349.40267 M 190.25885,144.7085 V 349.40267 M 195.55051,144.7085 V 349.40267 M 68.550633,144.7085 H 197.57386 M 68.550633,150.00016 H 197.57386 M 68.550633,155.29183 H 197.57386 M 68.550633,160.5835 H 197.57386 M 68.550633,165.87516 H 197.57386 M 68.550633,171.16683 H 197.57386 M 68.550633,176.4585 H 197.57386 M 68.550633,181.75016 H 197.57386 M 68.550633,187.04183 H 197.57386 M 68.550633,192.33349 H 197.57386 M 68.550633,197.62516 H 197.57386 M 68.550633,202.91683 H 197.57386 M 68.550633,208.2085 H 197.57386 M 68.550633,213.50018 H 197.57386 M 68.550633,218.79184 H 197.57386 M 68.550633,224.0835 H 197.57386 M 68.550633,229.37518 H 197.57386 M 68.550633,234.66684 H 197.57386 M 68.550633,239.95851 H 197.57386 M 68.550633,245.25017 H 197.57386 M 68.550633,250.54184 H 197.57386 M 68.550633,255.83351 H 197.57386 M 68.550633,261.12517 H 197.57386 M 68.550633,266.41684 H 197.57386 M 68.550633,271.70851 H 197.57386 M 68.550633,277.00016 H 197.57386 M 68.550633,282.29184 H 197.57386 M 68.550633,287.58351 H 197.57386 M 68.550633,292.87516 H 197.57386 M 68.550633,298.16684 H 197.57386 M 68.550633,303.45851 H 197.57386 M 68.550633,308.75016 H 197.57386 M 68.550633,314.04184 H 197.57386 M 68.550633,319.33351 H 197.57386 M 68.550633,324.62516 H 197.57386 M 68.550633,329.91684 H 197.57386 M 68.550633,335.20851 H 197.57386 M 68.550633,340.50016 H 197.57386 M 68.550633,345.79184 H 197.57386"
style="display:inline;fill:none;stroke:#7f7f7f;stroke-width:0.04;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path6560-5-2" />
<path
d="M -79.569366,144.70851 V 349.40267 M -74.2777,144.70851 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291667,-204.69416 V 349.40267 M -58.4027,144.70851 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291666,-204.69416 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291666,-204.69416 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291667,-204.69416 V 349.40267 M -5.486035,144.70851 V 349.40267 M -0.194366,144.70851 V 349.40267 M 5.097298,144.70851 v 204.69416 m 5.291667,-204.69416 v 204.69416 m 5.291666,-204.69416 v 204.69416 m 5.291662,-204.69416 v 204.69416 m 5.29167,-204.69416 v 204.69416 m 5.29167,-204.69416 v 204.69416 m 5.29167,-204.69416 v 204.69416 m 5.29166,-204.69416 v 204.69416 m 5.29167,-204.69416 V 349.40267 M -79.569366,144.70851 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29166 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29166 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29167 H 49.453963 M -79.569366,192.3335 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29167 H 49.453963 M -79.569366,208.2085 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29165 H 49.453963 M -79.569366,224.0835 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29165 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29166 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29166 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29165 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29165 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29165 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29165 H 49.453963 m -129.023329,5.29168 H 49.453963 m -129.023329,5.29167 H 49.453963 m -129.023329,5.29165 H 49.453963 m -129.023329,5.29168 H 49.453963"
style="display:inline;fill:none;stroke:#7f7f7f;stroke-width:0.04;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path6560-9"
transform="translate(81.157196,-138.76399)" />
</g>
<g
style="display:inline"
id="layer3">
<g
transform="translate(93.61583,-34.456309)"
style="display:inline"
id="layer1-9">
<rect
y="40.883331"
x="-93.133331"
height="197.90833"
width="180.44583"
id="rect5031"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:0.96499997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.89499987, 2.89499987;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill" />
<text
id="text817"
y="49.379761"
x="-86.579216"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="49.379761"
x="-86.579216"
id="tspan815"><tspan
id="tspan951"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan885"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:'Consolas Italic'">ESP8266WiFi.h</tspan>&gt;</tspan><tspan
id="tspan819"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="55.317192"
x="-86.579216"><tspan
id="tspan953"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan887"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:'Consolas Italic'">ESP8266WebServer.h</tspan>&gt;</tspan><tspan
id="tspan821"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="61.25462"
x="-86.579216" /><tspan
id="tspan823"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="66.987259"
x="-86.579216" /><tspan
id="tspan825"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="72.719894"
x="-86.579216"><tspan
id="tspan933"
style="fill:#ff6600">ESP8266WebServer</tspan><tspan
id="tspan907"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-opacity:0">Server</tspan>;</tspan><tspan
id="tspan827"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="78.657326"
x="-86.579216" /><tspan
id="tspan829"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="84.389969"
x="-86.579216" /><tspan
id="tspan831"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="90.122604"
x="-86.579216"><tspan
id="tspan957"
style="fill:#3366cc">void</tspan> rootPage() {</tspan><tspan
id="tspan833"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="96.060036"
x="-86.579216"><tspan
id="tspan967"
style="fill:#3366cc">char</tspan> content[] = <tspan
id="tspan971"
style="fill:#003399">&quot;Hello, world&quot;</tspan>;</tspan><tspan
id="tspan835"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="101.99747"
x="-86.579216"> Server.<tspan
id="tspan969"
style="fill:#ff6600">send</tspan>(200, <tspan
id="tspan973"
style="fill:#003399">&quot;text/plain&quot;</tspan>, content);</tspan><tspan
id="tspan837"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="107.93489"
x="-86.579216">}</tspan><tspan
id="tspan839"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="113.87232"
x="-86.579216" /><tspan
id="tspan841"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="119.60496"
x="-86.579216"><tspan
id="tspan959"
style="fill:#3366cc">void</tspan><tspan
id="tspan963"
style="fill:#808080">setup</tspan>() {</tspan><tspan
id="tspan843"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="125.54239"
x="-86.579216"><tspan
id="tspan975"
style="fill:#ff6600"> delay</tspan>(1000);</tspan><tspan
id="tspan845"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="131.47983"
x="-86.579216"><tspan
id="tspan977"
style="fill:#ff6600"> Serial</tspan>.<tspan
id="tspan979"
style="fill:#ff6600">begin</tspan>(115200);</tspan><tspan
id="tspan847"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="137.41725"
x="-86.579216"><tspan
id="tspan981"
style="fill:#ff6600"> Serial</tspan>.<tspan
id="tspan983"
style="fill:#ff6600">println</tspan>();</tspan><tspan
id="tspan849"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="143.35468"
x="-86.579216" /><tspan
id="tspan1201"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="149.08731"
x="-86.579216"><tspan
id="tspan1238"
style="fill:#ff6600"> WiFi</tspan>.<tspan
id="tspan1236"
style="fill:#ff6600">begin</tspan>(<tspan
id="tspan1248"
style="fill:#003399">&quot;ssid&quot;</tspan>, <tspan
id="tspan1250"
style="fill:#003399">&quot;pass&quot;</tspan>);</tspan><tspan
id="tspan1203"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="155.02475"
x="-86.579216"><tspan
id="tspan1240"
style="fill:#808080"> while</tspan> (<tspan
id="tspan1234"
style="fill:#ff6600">WiFi</tspan>.status() != WL_CONNECTED) {</tspan><tspan
id="tspan1205"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="160.96217"
x="-86.579216"><tspan
id="tspan1242"
style="fill:#ff6600"> delay</tspan>(100);</tspan><tspan
id="tspan1207"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="166.89961"
x="-86.579216"> }</tspan><tspan
id="tspan1209"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="172.83704"
x="-86.579216" /><tspan
id="tspan851"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="178.56967"
x="-86.579216"> Server.<tspan
id="tspan985"
style="fill:#ff6600">on</tspan>(<tspan
id="tspan987"
style="fill:#003399">&quot;/&quot;</tspan>, rootPage);</tspan><tspan
id="tspan857"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="184.50711"
x="-86.579216"> Server.<tspan
id="tspan989"
style="fill:#ff6600">begin</tspan>();</tspan><tspan
id="tspan859"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="190.44453"
x="-86.579216"><tspan
id="tspan10241"
style="fill:#ff6600"> Serial</tspan>.<tspan
id="tspan10243"
style="fill:#ff6600">println</tspan>(<tspan
id="tspan10245"
style="fill:#003399">&quot;WiFi connected: &quot;</tspan> +</tspan><tspan
id="tspan10156"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="196.38196"
x="-86.579216"><tspan
id="tspan10247"
style="fill:#ff6600"> WiFi</tspan>.<tspan
id="tspan10249"
style="fill:#ff6600">localIP</tspan>().toString());</tspan><tspan
id="tspan10158"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="202.3194"
x="-86.579216">}</tspan><tspan
id="tspan861"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="208.25682"
x="-86.579216" /><tspan
id="tspan5027"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="213.98946"
x="-86.579216" /><tspan
id="tspan5029"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="219.72211"
x="-86.579216" /><tspan
id="tspan863"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="225.45474"
x="-86.579216"><tspan
id="tspan961"
style="fill:#3366cc">void</tspan><tspan
id="tspan965"
style="fill:#808080">loop</tspan>() {</tspan><tspan
id="tspan865"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="231.39217"
x="-86.579216"> Server.<tspan
id="tspan1001"
style="fill:#ff6600">handleClient</tspan>();</tspan><tspan
id="tspan867"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="237.32961"
x="-86.579216">}</tspan></text>
<text
id="text817-4"
y="49.908928"
x="61.450211"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="49.908928"
x="61.450211"
id="tspan815-6"><tspan
id="tspan951-0"
style="fill:#669900;stroke-width:0.26458332">#include</tspan> &lt;<tspan
id="tspan885-9"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:'Consolas Italic';stroke-width:0.26458332">ESP8266WiFi.h</tspan>&gt;</tspan><tspan
id="tspan819-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="55.846359"
x="61.450211"><tspan
id="tspan953-1"
style="fill:#669900;stroke-width:0.26458332">#include</tspan> &lt;<tspan
id="tspan887-6"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:'Consolas Italic';stroke-width:0.26458332">ESP8266WebServer.h</tspan>&gt;</tspan><tspan
id="tspan821-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="61.783787"
x="61.450211"><tspan
id="tspan955-1"
style="fill:#669900;stroke-width:0.26458332">#include</tspan> &lt;<tspan
id="tspan889-5"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:'Consolas Italic';stroke-width:0.26458332">AutoConnect.h</tspan>&gt;</tspan><tspan
id="tspan823-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="67.721214"
x="61.450211" /><tspan
id="tspan825-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="73.453857"
x="61.450211"><tspan
id="tspan933-1"
style="fill:#ff6600;stroke-width:0.26458332">ESP8266WebServer </tspan><tspan
id="tspan907-7"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-opacity:0">Server</tspan>;</tspan><tspan
id="tspan827-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="79.391281"
x="61.450211"><tspan
id="tspan939-3"
style="fill:#ff6600;stroke-width:0.26458332">AutoConnect</tspan> Portal(Server);</tspan><tspan
id="tspan829-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="85.328712"
x="61.450211" /><tspan
id="tspan831-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="91.061356"
x="61.450211"><tspan
id="tspan957-4"
style="fill:#3366cc;stroke-width:0.26458332">void</tspan> rootPage() {</tspan><tspan
id="tspan833-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="96.998779"
x="61.450211"><tspan
id="tspan967-0"
style="fill:#3366cc;stroke-width:0.26458332"> char</tspan> content[] = <tspan
id="tspan971-3"
style="fill:#003399;stroke-width:0.26458332">&quot;Hello, world&quot;</tspan>;</tspan><tspan
id="tspan835-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="102.93621"
x="61.450211"> Server.<tspan
id="tspan969-6"
style="fill:#ff6600;stroke-width:0.26458332">send</tspan>(200, <tspan
id="tspan973-5"
style="fill:#003399;stroke-width:0.26458332">&quot;text/plain&quot;</tspan>, content);</tspan><tspan
id="tspan837-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="108.87364"
x="61.450211">}</tspan><tspan
id="tspan839-8"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="114.81107"
x="61.450211" /><tspan
id="tspan841-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="120.54371"
x="61.450211"><tspan
id="tspan959-3"
style="fill:#3366cc;stroke-width:0.26458332">void </tspan><tspan
id="tspan963-4"
style="fill:#808080;stroke-width:0.26458332">setup</tspan>() {</tspan><tspan
id="tspan843-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="126.48114"
x="61.450211"><tspan
id="tspan975-8"
style="fill:#ff6600;stroke-width:0.26458332"> delay</tspan>(1000);</tspan><tspan
id="tspan845-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="132.41856"
x="61.450211"><tspan
id="tspan977-5"
style="fill:#ff6600;stroke-width:0.26458332"> Serial</tspan>.<tspan
id="tspan979-0"
style="fill:#ff6600;stroke-width:0.26458332">begin</tspan>(115200);</tspan><tspan
id="tspan847-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="138.356"
x="61.450211"><tspan
id="tspan981-2"
style="fill:#ff6600;stroke-width:0.26458332"> Serial</tspan>.<tspan
id="tspan983-4"
style="fill:#ff6600;stroke-width:0.26458332">println</tspan>();</tspan><tspan
id="tspan849-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="144.29343"
x="61.450211" /><tspan
id="tspan851-1"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="150.02606"
x="61.450211" /><tspan
id="tspan4949"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="155.75871"
x="61.450211" /><tspan
id="tspan4953"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="161.49135"
x="61.450211" /><tspan
id="tspan4957"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="167.22398"
x="61.450211" /><tspan
id="tspan4961"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="172.95662"
x="61.450211" /><tspan
id="tspan8589"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="178.68925"
x="61.450211"> Server.<tspan
id="tspan985-8"
style="fill:#ff6600;stroke-width:0.26458332">on</tspan>(<tspan
id="tspan987-9"
style="fill:#003399;stroke-width:0.26458332">&quot;/&quot;</tspan>, rootPage);</tspan><tspan
id="tspan10135"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="184.62669"
x="61.450211"><tspan
id="tspan10139"
style="fill:#3366cc"> boolean</tspan> r = Portal.<tspan
id="tspan10137"
style="fill:#ff6600">begin</tspan>();</tspan><tspan
id="tspan853-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="190.56412"
x="61.450211"><tspan
id="tspan1007-8"
style="fill:#808080;stroke-width:0.26458332"> if</tspan> (r) {</tspan><tspan
id="tspan855-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="196.50156"
x="61.450211"><tspan
id="tspan991-8"
style="fill:#ff6600;stroke-width:0.26458332"> Serial</tspan>.<tspan
id="tspan993-0"
style="fill:#ff6600;stroke-width:0.26458332">println</tspan>(<tspan
id="tspan995-3"
style="fill:#003399;stroke-width:0.26458332">&quot;WiFi connected: &quot;</tspan> + </tspan><tspan
id="tspan6550"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="202.43898"
x="61.450211"><tspan
id="tspan6552"
style="fill:#ff6600;stroke-width:0.26458332"> WiFi</tspan>.<tspan
id="tspan999-4"
style="fill:#ff6600;stroke-width:0.26458332">localIP</tspan>().toString());</tspan><tspan
id="tspan857-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="208.3764"
x="61.450211"> }</tspan><tspan
id="tspan859-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="214.31384"
x="61.450211">}</tspan><tspan
id="tspan8585"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="220.25127"
x="61.450211" /><tspan
id="tspan863-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="225.9839"
x="61.450211"><tspan
id="tspan961-0"
style="fill:#3366cc;stroke-width:0.26458332">void </tspan><tspan
id="tspan965-0"
style="fill:#808080;stroke-width:0.26458332">loop</tspan>() {</tspan><tspan
id="tspan865-0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="231.92134"
x="61.450211"> Portal.<tspan
id="tspan1001-9"
style="fill:#ff6600;stroke-width:0.26458332">handleClient</tspan>();</tspan><tspan
id="tspan867-8"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Consolas;-inkscape-font-specification:Consolas;stroke-width:0.26458332"
y="237.85876"
x="61.450211">}</tspan></text>
<path
id="path6541"
style="fill:none;stroke:none;stroke-width:0.0264583px"
d="M -93.133329,40.88333 V 238.79165 M -87.841663,40.88333 V 238.79165 M -82.549996,40.88333 V 238.79165 M -77.25833,40.88333 V 238.79165 M -71.966663,40.88333 V 238.79165 M -66.674996,40.88333 V 238.79165 M -61.38333,40.88333 V 238.79165 M -56.091663,40.88333 V 238.79165 M -50.799997,40.88333 V 238.79165 M -45.50833,40.88333 V 238.79165 M -40.216664,40.88333 V 238.79165 M -34.924997,40.88333 V 238.79165 M -29.633331,40.88333 V 238.79165 M -24.341664,40.88333 V 238.79165 M -19.049998,40.88333 V 238.79165 M -13.758331,40.88333 V 238.79165 M -8.4666644,40.88333 V 238.79165 M -3.1749979,40.88333 V 238.79165 M 2.1166687,40.88333 V 238.79165 M 7.4083352,40.88333 V 238.79165 M 12.700002,40.88333 V 238.79165 M 17.991668,40.88333 V 238.79165 M 23.283335,40.88333 V 238.79165 M 28.575001,40.88333 V 238.79165 M 33.866668,40.88333 V 238.79165 M 39.158334,40.88333 V 238.79165 M 44.450001,40.88333 V 238.79165 M 49.741668,40.88333 V 238.79165 M 55.033334,40.88333 V 238.79165 M 60.325001,40.88333 V 238.79165 M 65.616667,40.88333 V 238.79165 M 70.908334,40.88333 V 238.79165 M 76.2,40.88333 V 238.79165 M 81.491667,40.88333 V 238.79165 M 86.783333,40.88333 V 238.79165 M -93.133329,40.88333 H 87.312498 M -93.133329,46.174997 H 87.312498 M -93.133329,51.466663 H 87.312498 M -93.133329,56.75833 H 87.312498 M -93.133329,62.049997 H 87.312498 M -93.133329,67.341663 H 87.312498 M -93.133329,72.63333 H 87.312498 M -93.133329,77.924996 H 87.312498 M -93.133329,83.216663 H 87.312498 M -93.133329,88.508329 H 87.312498 M -93.133329,93.799996 H 87.312498 M -93.133329,99.091662 H 87.312498 M -93.133329,104.38333 H 87.312498 M -93.133329,109.675 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 M -93.133329,125.55 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29167 H 87.312498 m -180.445827,5.29166 H 87.312498" />
<rect
y="40.883331"
x="-93.133331"
height="203.72917"
width="128.05833"
id="rect6558"
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.96499997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.89499987, 2.89499987;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill" />
<text
id="text8720"
y="39.311832"
x="-37.417728"
style="font-style:normal;font-weight:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:6.3499999px;stroke-width:0.26458332"
y="39.311832"
x="-37.417728"
id="tspan8718">Before</tspan></text>
<text
id="text8720-4"
y="39.311832"
x="108.89342"
style="font-style:normal;font-weight:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:6.3499999px;stroke-width:0.26458332"
y="39.311832"
x="108.89342"
id="tspan8718-5">After</tspan></text>
</g>
</g>
<g
style="display:inline"
transform="translate(81.157197,-138.76399)"
id="layer1">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#cc0000;fill-opacity:0.5884476;stroke:none;stroke-width:0.26458332"
x="40.037697"
y="166.73872"
id="text4947"><tspan
id="tspan4945"
x="40.037697"
y="166.73872"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#cc0000;fill-opacity:0.5884476;stroke-width:0.26458332">Insert</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#cc0000;fill-opacity:0.5884476;stroke:none;stroke-width:0.26458332"
x="40.037697"
y="184.13321"
id="text4947-7"><tspan
id="tspan4945-8"
x="40.037697"
y="184.13321"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#cc0000;fill-opacity:0.5884476;stroke-width:0.26458332">Insert</tspan></text>
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.5884476;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,21.795133,114.15624)" />
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.5884476;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601-8"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,21.795133,96.761759)" />
<path
style="display:inline;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="M 72.114683,167.42599 H 136.51327"
id="path8701" />
<path
style="display:inline;fill:none;stroke:#ff0000;stroke-width:1.15039361;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.30078721, 2.30078721;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="M 71.755433,185.31781 H 156.98093"
id="path8701-6" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#cc0000;fill-opacity:0.58823529;stroke:none;stroke-width:0.26458332"
x="42.387871"
y="261.29605"
id="text4947-7-7"><tspan
id="tspan4945-8-3"
x="42.387871"
y="261.29605"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#cc0000;fill-opacity:0.58823529;stroke-width:0.26458332">Remove</tspan></text>
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.58823529;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601-2"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,-7.50529,190.98005)" />
<path
style="display:inline;fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="m -72.033307,247.67462 v 27.45676 h 104.21089 v -27.20715 z"
id="path8699" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:1.13;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.58823529"
d="M 21.700583,287.63911 H -27.340845"
id="path8682" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#cc0000;fill-opacity:0.58823529;stroke:none;stroke-width:0.26458332"
x="29.687849"
y="289.42407"
id="text4947-7-7-1"><tspan
id="tspan4945-8-3-2"
x="29.687849"
y="289.42407"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#cc0000;fill-opacity:0.58823529;stroke-width:0.26458332">Replace</tspan></text>
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.58823529;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601-2-1"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,-21.094365,219.93372)" />
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.58823529;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601-2-1-2"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,27.103313,219.93372)" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:1.13;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.58823529"
d="m 69.885303,287.73791 h -8.68119"
id="path8682-3" />
<path
style="display:inline;fill:none;stroke:#ff0000;stroke-width:1.14999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.3, 2.3;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="m -69.10603,290.54068 h 37.675386"
id="path8701-6-3" />
<path
style="display:inline;fill:none;stroke:#ff0000;stroke-width:1.14999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.3, 2.3;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="M 78.780993,290.54068 H 147.78207"
id="path8701-6-3-0" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:1.13;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.58823529"
d="M 21.741973,334.36742 H -12.558384"
id="path8682-0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#cc0000;fill-opacity:0.58823529;stroke:none;stroke-width:0.26458332"
x="29.729242"
y="336.15237"
id="text4947-7-7-1-1"><tspan
id="tspan4945-8-3-2-6"
x="29.729242"
y="336.15237"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.3499999px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#cc0000;fill-opacity:0.58823529;stroke-width:0.26458332">Replace</tspan></text>
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.58823529;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601-2-1-1"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,-21.052974,266.66203)" />
<path
style="display:inline;opacity:1;fill:#cc0000;fill-opacity:0.58823529;stroke:#000000;stroke-width:0.04;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0;paint-order:markers stroke fill"
id="path8601-2-1-2-6"
d="M 58.774079,77.788551 52.28775,81.533435 V 74.043668 Z"
transform="matrix(0.81717396,0,0,0.87052198,27.144704,266.66203)" />
<path
style="display:inline;fill:none;stroke:#cc0000;stroke-width:1.13000011;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.58823529"
d="M 69.926694,334.46622 H 61.245503"
id="path8682-3-5" />
<path
style="display:inline;fill:none;stroke:#ff0000;stroke-width:1.14999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.3, 2.3;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="m -69.064641,337.26899 h 15.35838"
id="path8701-6-3-3" />
<path
style="display:inline;opacity:1;fill:none;stroke:#ff0000;stroke-width:1.14999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.3, 2.3;stroke-dashoffset:0;stroke-opacity:0.58823529"
d="M 78.822388,337.26899 H 94.503219"
id="path8701-6-3-0-1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg:svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 190.78812 90.019508"
height="90.019508mm"
width="190.78812mm">
<svg:defs
id="defs2" />
<svg:metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</svg:metadata>
<svg:g
transform="translate(-10.346796,-89.855804)"
id="layer1">
<svg:g
transform="matrix(0.26458333,0,0,0.26458333,10.755441,89.855804)"
id="g4"
style="fill:none;stroke:#ffffff;stroke-width:60;stroke-opacity:1">
<svg:path
style="stroke:#ffffff;stroke-opacity:1"
id="path6"
d="m 174,30 a 145.54455,140 0 0 0 0,280 C 364,320 344,30 544,30 a 145.54455,140 0 0 1 0,280 C 354,320 374,30 174,30" />
</svg:g>
<svg:g
style="font-size:167px;font-family:sans-serif;text-anchor:middle;fill:#00979c;stroke:#ffffff;stroke-width:20;stroke-opacity:1"
transform="matrix(0.26458333,0,0,0.26458333,10.755441,92.501637)"
id="g8"
font-size="167">
<svg:g
style="stroke:#ffffff;stroke-opacity:1"
id="text10">
<svg:path
style="stroke:#ffffff;stroke-opacity:1"
id="path3075"
d="M 528.06885,194.67432 V 161.89404 H 495.5332 v -13.69922 h 32.53565 v -32.53564 h 13.8623 v 32.53564 h 32.53565 v 13.69922 h -32.53565 v 32.78028 z" />
</svg:g>
<svg:text
style="stroke:#ffffff;stroke-opacity:1"
id="text12"
dy="0"
y="218"
x="181">
<ndash />
</svg:text>
</svg:g>
<svg:g
transform="matrix(0.26458333,0,0,0.26458333,10.755441,89.855804)"
id="g14"
font-size="40"
style="font-size:40px;font-family:Arial;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1">
<svg:g
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
id="text16">
<svg:path
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
id="path3072"
d="M 681.55078,29.285156 V 15.730469 h -5.15625 v -2.363281 h 13.00781 v 2.363281 h -5.19531 v 13.554687 z m 9.62891,0 V 13.367188 h 3.90625 l 4.02343,12.714843 3.88672,-12.714843 h 3.82813 v 15.917968 h -2.42188 V 15.925781 l -4.10156,13.359375 h -2.40234 l -4.27735,-13.554687 v 13.554687 z" />
</svg:g>
</svg:g>
<svg:g
style="font-size:167px;font-family:sans-serif;text-anchor:middle;fill:#00979c;stroke:#ffffff;stroke-width:20;stroke-opacity:1"
transform="matrix(0.26458333,0,0,0.26458333,-86.027691,89.995434)"
id="g8-1"
font-size="167">
<svg:g
id="text10-7"
style="font-size:197.21893311px;stroke:#ffffff;stroke-width:23.61903381;stroke-opacity:1"
transform="scale(1.5645974,0.63914206)">
<svg:path
id="path3078"
style="font-size:197.21893311px;stroke:#ffffff;stroke-width:23.61903381;stroke-opacity:1"
d="m 321.41756,266.30877 v -17.43 h 53.25297 v 17.43 z" />
</svg:g>
<svg:g
style="stroke:#ffffff;stroke-opacity:1"
id="text12-4" />
</svg:g>
</svg:g>
</svg:svg>

Binary file not shown.

After

Width:  |  Height:  |  Size: 924 B

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg8"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="arrow_right.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="581.66557"
inkscape:cy="622.10349"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1440"
inkscape:window-height="810"
inkscape:window-x="1554"
inkscape:window-y="196"
inkscape:window-maximized="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="レイヤー 1"
inkscape:groupmode="layer"
id="layer1">
<g
style="opacity:1;fill:#8b8b8b;fill-opacity:1"
id="g842"
transform="matrix(0.26458333,0,0,0.26458333,22.461236,73.823972)">
<g
id="g830"
style="fill:#8b8b8b;fill-opacity:1">
<path
id="path828"
style="fill:#8b8b8b;fill-opacity:1"
d="M 499.436,225.905 295.858,24.536 C 279.235,8.098 252.43,8.231 235.992,24.864 219.554,41.477 219.698,68.282 236.321,84.72 L 366.677,213.678 H 42.329 C 18.956,213.679 0,232.624 0,255.997 0,279.38 18.956,298.325 42.329,298.325 H 366.676 L 236.321,427.273 c -16.623,16.438 -16.767,43.254 -0.329,59.867 16.438,16.622 43.243,16.766 59.866,0.328 L 499.436,286.1 C 507.48,278.137 512,267.308 512,255.998 c 0,-11.313 -4.521,-22.132 -12.564,-30.093 z"
class="st0"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<style
id="style826"
type="text/css">
.st0{fill:#4B4B4B;}
</style>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

@ -0,0 +1,695 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 191.10721 454.36032"
height="454.36032mm"
width="191.10721mm">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(5.0000008,4.9999992)"
id="layer2">
<path
id="path4982"
style="fill:none;stroke:#000000;stroke-width:0.0264583px"
d="M -4.9867716,-4.9999882 V 449.36032 M 0.30489485,-4.9999882 V 449.36032 M 5.5965614,-4.9999882 V 449.36032 M 10.888228,-4.9999882 V 449.36032 M 16.179894,-4.9999882 V 449.36032 M 21.471561,-4.9999882 V 449.36032 M 26.763227,-4.9999882 V 449.36032 M 32.054894,-4.9999882 V 449.36032 M 37.34656,-4.9999882 V 449.36032 M 42.638227,-4.9999882 V 449.36032 M 47.929893,-4.9999882 V 449.36032 M 53.22156,-4.9999882 V 449.36032 M 58.513227,-4.9999882 V 449.36032 M 63.804893,-4.9999882 V 449.36032 M 69.09656,-4.9999882 V 449.36032 M 74.388226,-4.9999882 V 449.36032 M 79.679893,-4.9999882 V 449.36032 M 84.971559,-4.9999882 V 449.36032 M 90.263226,-4.9999882 V 449.36032 M 95.554888,-4.9999882 V 449.36032 M 100.84656,-4.9999882 V 449.36032 M 106.13823,-4.9999882 V 449.36032 M 111.42989,-4.9999882 V 449.36032 M 116.72156,-4.9999882 V 449.36032 M 122.01323,-4.9999882 V 449.36032 M 127.30489,-4.9999882 V 449.36032 M 132.59656,-4.9999882 V 449.36032 M 137.88823,-4.9999882 V 449.36032 M 143.17989,-4.9999882 V 449.36032 M 148.47156,-4.9999882 V 449.36032 M 153.76323,-4.9999882 V 449.36032 M 159.05489,-4.9999882 V 449.36032 M 164.34656,-4.9999882 V 449.36032 M 169.63823,-4.9999882 V 449.36032 M 174.92989,-4.9999882 V 449.36032 M 180.22156,-4.9999882 V 449.36032 M 185.51323,-4.9999882 V 449.36032 M -4.9867716,-4.9999882 H 186.12043 M -4.9867716,0.29167834 H 186.12043 M -4.9867716,5.5833448 H 186.12043 M -4.9867716,10.875012 H 186.12043 M -4.9867716,16.166678 H 186.12043 M -4.9867716,21.458345 H 186.12043 M -4.9867716,26.750011 H 186.12043 M -4.9867716,32.041678 H 186.12043 M -4.9867716,37.333344 H 186.12043 M -4.9867716,42.625011 H 186.12043 M -4.9867716,47.916677 H 186.12043 M -4.9867716,53.208344 H 186.12043 M -4.9867716,58.500011 H 186.12043 M -4.9867716,63.791677 H 186.12043 M -4.9867716,69.083344 H 186.12043 M -4.9867716,74.37501 H 186.12043 M -4.9867716,79.666677 H 186.12043 M -4.9867716,84.958343 H 186.12043 M -4.9867716,90.25001 H 186.12043 M -4.9867716,95.541672 H 186.12043 M -4.9867716,100.83334 H 186.12043 M -4.9867716,106.12501 H 186.12043 M -4.9867716,111.41667 H 186.12043 M -4.9867716,116.70834 H 186.12043 M -4.9867716,122.00001 H 186.12043 M -4.9867716,127.29167 H 186.12043 M -4.9867716,132.58334 H 186.12043 M -4.9867716,137.87501 H 186.12043 M -4.9867716,143.16667 H 186.12043 M -4.9867716,148.45834 H 186.12043 M -4.9867716,153.75001 H 186.12043 M -4.9867716,159.04167 H 186.12043 M -4.9867716,164.33334 H 186.12043 M -4.9867716,169.62501 H 186.12043 M -4.9867716,174.91667 H 186.12043 M -4.9867716,180.20834 H 186.12043 M -4.9867716,185.50001 H 186.12043 M -4.9867716,190.79167 H 186.12043 M -4.9867716,196.08334 H 186.12043 M -4.9867716,201.37501 H 186.12043 M -4.9867716,206.66667 H 186.12043 M -4.9867716,211.95834 H 186.12043 M -4.9867716,217.25001 H 186.12043 M -4.9867716,222.54167 H 186.12043 M -4.9867716,227.83334 H 186.12043 M -4.9867716,233.125 H 186.12043 M -4.9867716,238.41667 H 186.12043 M -4.9867716,243.70834 H 186.12043 M -4.9867716,249 H 186.12043 M -4.9867716,254.29167 H 186.12043 M -4.9867716,259.58334 H 186.12043 M -4.9867716,264.875 H 186.12043 M -4.9867716,270.16667 H 186.12043 M -4.9867716,275.45834 H 186.12043 M -4.9867716,280.75 H 186.12043 M -4.9867716,286.04167 H 186.12043 M -4.9867716,291.33334 H 186.12043 M -4.9867716,296.625 H 186.12043 M -4.9867716,301.91667 H 186.12043 M -4.9867716,307.20834 H 186.12043 M -4.9867716,312.5 H 186.12043 M -4.9867716,317.79167 H 186.12043 M -4.9867716,323.08334 H 186.12043 M -4.9867716,328.375 H 186.12043 M -4.9867716,333.66667 H 186.12043 M -4.9867716,338.95834 H 186.12043 M -4.9867716,344.25 H 186.12043 M -4.9867716,349.54167 H 186.12043 M -4.9867716,354.83334 H 186.12043 M -4.9867716,360.125 H 186.12043 M -4.9867716,365.41667 H 186.12043 M -4.9867716,370.70834 H 186.12043 M -4.9867716,376 H 186.12043 M -4.9867716,381.29167 H 186.12043 M -4.9867716,386.58333 H 186.12043 M -4.9867716,391.875 H 186.12043 M -4.9867716,397.16667 H 186.12043 M -4.9867716,402.45833 H 186.12043 M -4.9867716,407.75 H 186.12043 M -4.9867716,413.04167 H 186.12043 M -4.9867716,418.33333 H 186.12043 M -4.9867716,423.625 H 186.12043 M -4.9867716,428.91667 H 186.12043 M -4.9867716,434.20833 H 186.12043 M -4.9867716,439.5 H 186.12043 M -4.9867716,444.79167 H 186.12043" />
</g>
<g
style="display:inline"
transform="translate(46.95536,63.837051)"
id="layer1">
<text
id="text4506"
y="-56.407742"
x="-41.95536"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.88055563px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-56.407742"
x="-41.95536"
id="tspan4504"><tspan
id="tspan4776"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan4780"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Italic'">ESP8266WiFi.h</tspan>&gt;</tspan><tspan
id="tspan4508"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-51.557049"
x="-41.95536"><tspan
id="tspan4778"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan4782"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Italic'">ESP8266WebServer.h</tspan>&gt;</tspan><tspan
id="tspan4510"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-46.706352"
x="-41.95536"><tspan
id="tspan4786"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan4784"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Italic'">AutoConnect.h</tspan>&gt;</tspan><tspan
id="tspan4512"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-41.855659"
x="-41.95536" /><tspan
id="tspan4514"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-37.004963"
x="-41.95536"><tspan
id="tspan4788"
style="fill:#ff6600">ESP8266WebServer</tspan> server;</tspan><tspan
id="tspan4516"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-32.15427"
x="-41.95536"><tspan
id="tspan4790"
style="fill:#ff6600">AutoConnect</tspan> portal(server);</tspan><tspan
id="tspan4518"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-27.303574"
x="-41.95536" /><tspan
id="tspan4520"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-22.452879"
x="-41.95536"><tspan
id="tspan4792"
style="fill:#3366cc">void</tspan> handleRoot() {</tspan><tspan
id="tspan4522"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-17.602184"
x="-41.95536"> <tspan
id="tspan4794"
style="fill:#3366cc">String</tspan> page = PSTR(</tspan><tspan
id="tspan4524"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-12.751491"
x="-41.95536">&quot;&lt;html&gt;&quot;</tspan><tspan
id="tspan4526"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-7.9007959"
x="-41.95536">&quot;&lt;/head&gt;&quot;</tspan><tspan
id="tspan4528"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-3.0501018"
x="-41.95536"> &quot;&lt;meta name=\&quot;viewport\&quot; content=\&quot;width=device-width, initial-scale=1\&quot;&gt;&quot;</tspan><tspan
id="tspan4530"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="1.8005929"
x="-41.95536"> &quot;&lt;style type=\&quot;text/css\&quot;&gt;&quot;</tspan><tspan
id="tspan4532"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="6.6512876"
x="-41.95536"> &quot;body {&quot;</tspan><tspan
id="tspan4534"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="11.501982"
x="-41.95536"> &quot;-webkit-appearance:none;&quot;</tspan><tspan
id="tspan4536"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="16.352676"
x="-41.95536"> &quot;-moz-appearance:none;&quot;</tspan><tspan
id="tspan4538"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="21.203371"
x="-41.95536"> &quot;font-family:'Arial',sans-serif;&quot;</tspan><tspan
id="tspan4540"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="26.054066"
x="-41.95536"> &quot;text-align:center;&quot;</tspan><tspan
id="tspan4542"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="30.90476"
x="-41.95536"> &quot;}&quot;</tspan><tspan
id="tspan4544"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="35.755455"
x="-41.95536"> &quot;.menu {&quot;</tspan><tspan
id="tspan4546"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="40.606148"
x="-41.95536"> &quot;text-align:right;&quot;</tspan><tspan
id="tspan4548"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="45.456844"
x="-41.95536"> &quot;}&quot;</tspan><tspan
id="tspan4550"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="50.307537"
x="-41.95536"> &quot;.button {&quot;</tspan><tspan
id="tspan4552"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="55.158234"
x="-41.95536"> &quot;display:inline-block;&quot;</tspan><tspan
id="tspan4554"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="60.008926"
x="-41.95536"> &quot;border-radius:7px;&quot;</tspan><tspan
id="tspan4556"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="64.859619"
x="-41.95536"> &quot;background:#73ad21;&quot;</tspan><tspan
id="tspan4558"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="69.71032"
x="-41.95536"> &quot;margin:0 10px 0 10px;&quot;</tspan><tspan
id="tspan4560"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="74.561012"
x="-41.95536"> &quot;padding:10px 20px 10px 20px;&quot;</tspan><tspan
id="tspan4562"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="79.411705"
x="-41.95536"> &quot;text-decoration:none;&quot;</tspan><tspan
id="tspan4564"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="84.262398"
x="-41.95536"> &quot;color:#000000;&quot;</tspan><tspan
id="tspan4566"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="89.113098"
x="-41.95536"> &quot;}&quot;</tspan><tspan
id="tspan4568"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="93.963791"
x="-41.95536"> &quot;&lt;/style&gt;&quot;</tspan><tspan
id="tspan4570"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="98.814484"
x="-41.95536">&quot;&lt;/head&gt;&quot;</tspan><tspan
id="tspan4572"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="103.66518"
x="-41.95536">&quot;&lt;body&gt;&quot;</tspan><tspan
id="tspan4574"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="108.51587"
x="-41.95536"> &quot;&lt;p class=\&quot;menu\&quot;&gt;&quot; <tspan
id="tspan4798"
style="fill:#000000">AUTOCONNECT_LINK(BAR_32)</tspan> &quot;&lt;/p&gt;&quot;</tspan><tspan
id="tspan4576"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="113.36657"
x="-41.95536"> &quot;BUILT-IN LED&lt;br&gt;&quot;</tspan><tspan
id="tspan4578"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="118.21726"
x="-41.95536"><tspan
id="tspan4796"
style="fill:#003399"> &quot;GPIO(&quot;</tspan>);</tspan><tspan
id="tspan4580"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="123.06796"
x="-41.95536"> page += <tspan
id="tspan4800"
style="fill:#3366cc">String</tspan>(BUILTIN_LED);</tspan><tspan
id="tspan4582"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="127.91865"
x="-41.95536"> page += <tspan
id="tspan4802"
style="fill:#3366cc">String</tspan>(F(<tspan
id="tspan4804"
style="fill:#003399">&quot;) : &lt;span style=\&quot;font-weight:bold;color:&quot;</tspan>));</tspan><tspan
id="tspan4584"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="132.76935"
x="-41.95536"> page += <tspan
id="tspan4806"
style="fill:#ff6600">digitalRead</tspan>(BUILTIN_LED) ? <tspan
id="tspan4808"
style="fill:#3366cc">String</tspan>(<tspan
id="tspan4812"
style="fill:#003399">&quot;Tomato\&quot;&gt;HIGH&quot;</tspan>) : <tspan
id="tspan4814"
style="fill:#3366cc">String</tspan>(<tspan
id="tspan4816"
style="fill:#003399">&quot;SlateBlue\&quot;&gt;LOW&quot;</tspan>);</tspan><tspan
id="tspan4586"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="137.62004"
x="-41.95536"> page += <tspan
id="tspan4818"
style="fill:#ff6600">String</tspan>(F(<tspan
id="tspan4820"
style="fill:#003399">&quot;&lt;/span&gt;&quot;</tspan>));</tspan><tspan
id="tspan4588"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="142.47073"
x="-41.95536"> page += <tspan
id="tspan4822"
style="fill:#ff6600">String</tspan>(F(<tspan
id="tspan4826"
style="fill:#003399">&quot;&lt;p&gt;&lt;a class=\&quot;button\&quot; href=\&quot;/io?v=low\&quot;&gt;low&lt;/a&gt;</tspan></tspan><tspan
id="tspan4968"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="147.32143"
x="-41.95536"><tspan
id="tspan4970"
style="fill:#003399"> &lt;a class=\&quot;button\&quot; href=\&quot;/io?v=high\&quot;&gt;high&lt;/a&gt;&lt;/p&gt;&quot;</tspan>));</tspan><tspan
id="tspan4590"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="152.17212"
x="-41.95536"> page += <tspan
id="tspan4824"
style="fill:#ff6600">String</tspan>(F(<tspan
id="tspan4828"
style="fill:#003399">&quot;&lt;/body&gt;&lt;/html&gt;&quot;</tspan>));</tspan><tspan
id="tspan4592"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="157.02281"
x="-41.95536"> server().<tspan
id="tspan4832"
style="fill:#ff6600">send</tspan>(200, <tspan
id="tspan4834"
style="fill:#003399">&quot;text/html&quot;</tspan>, page);</tspan><tspan
id="tspan4594"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="161.87352"
x="-41.95536">}</tspan><tspan
id="tspan4596"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="166.72421"
x="-41.95536" /><tspan
id="tspan4598"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="171.57491"
x="-41.95536"><tspan
id="tspan4836"
style="fill:#3366cc">void</tspan> handleGPIO() {</tspan><tspan
id="tspan4600"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="176.4256"
x="-41.95536"> <tspan
id="tspan4838"
style="fill:#808080">if</tspan> (server.<tspan
id="tspan4842"
style="fill:#ff6600">arg</tspan>(<tspan
id="tspan4844"
style="fill:#003399">&quot;v&quot;</tspan>) == <tspan
id="tspan4846"
style="fill:#003399">&quot;low&quot;</tspan>)</tspan><tspan
id="tspan4602"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="181.27629"
x="-41.95536"> <tspan
id="tspan4850"
style="fill:#ff6600">digitalWrite</tspan>(BUILTIN_LED, <tspan
id="tspan4852"
style="fill:#ff6600">LOW</tspan>);</tspan><tspan
id="tspan4604"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="186.12698"
x="-41.95536"> <tspan
id="tspan4860"
style="fill:#808080">else</tspan> <tspan
id="tspan4862"
style="fill:#808080">if</tspan> (server.<tspan
id="tspan4858"
style="fill:#ff6600">arg</tspan>(<tspan
id="tspan4856"
style="fill:#003399">&quot;v&quot;</tspan>) == <tspan
id="tspan4854"
style="fill:#003399">&quot;high&quot;</tspan>)</tspan><tspan
id="tspan4606"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="190.97768"
x="-41.95536"> <tspan
id="tspan4864"
style="fill:#ff6600">digitalWrite</tspan>(BUILTIN_LED, <tspan
id="tspan4866"
style="fill:#ff6600">HIGH</tspan>);</tspan><tspan
id="tspan4608"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="195.82837"
x="-41.95536"> sendRedirect(&quot;/&quot;);</tspan><tspan
id="tspan4610"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="200.67906"
x="-41.95536">}</tspan><tspan
id="tspan4612"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="205.52977"
x="-41.95536" /><tspan
id="tspan4614"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="210.38046"
x="-41.95536"><tspan
id="tspan4868"
style="fill:#3366cc">void</tspan> sendRedirect(<tspan
id="tspan4870"
style="fill:#3366cc">String</tspan> uri) {</tspan><tspan
id="tspan4616"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="215.23116"
x="-41.95536"> server.<tspan
id="tspan4872"
style="fill:#ff6600">sendHeader</tspan>(<tspan
id="tspan4874"
style="fill:#003399">&quot;Location&quot;</tspan>, uri, <tspan
id="tspan4876"
style="fill:#3366cc">true</tspan>);</tspan><tspan
id="tspan4618"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="220.08185"
x="-41.95536"> server.<tspan
id="tspan4880"
style="fill:#ff6600">send</tspan>(302, &quot;text/plain&quot;, <tspan
id="tspan4878"
style="fill:#003399">&quot;&quot;</tspan>);</tspan><tspan
id="tspan4620"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="224.93254"
x="-41.95536"> server.<tspan
id="tspan4884"
style="fill:#ff6600">client</tspan>().<tspan
id="tspan4886"
style="fill:#ff6600">stop</tspan>();</tspan><tspan
id="tspan4622"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="229.78323"
x="-41.95536">}</tspan><tspan
id="tspan4624"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="234.63393"
x="-41.95536" /><tspan
id="tspan4626"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="239.48462"
x="-41.95536"><tspan
id="tspan4890"
style="fill:#3366cc">void</tspan> setup() {</tspan><tspan
id="tspan4628"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="244.33533"
x="-41.95536"> <tspan
id="tspan4888"
style="fill:#ff6600">delay</tspan>(1000);</tspan><tspan
id="tspan4630"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="249.18602"
x="-41.95536"> <tspan
id="tspan4892"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4894"
style="fill:#ff6600">begin</tspan>(115200);</tspan><tspan
id="tspan4632"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="254.03671"
x="-41.95536"> <tspan
id="tspan4898"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4896"
style="fill:#ff6600">println</tspan>();</tspan><tspan
id="tspan4634"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="258.88739"
x="-41.95536"> <tspan
id="tspan4900"
style="fill:#ff6600">pinMode</tspan>(BUILTIN_LED, <tspan
id="tspan4902"
style="fill:#ff6600">OUTPUT</tspan>);</tspan><tspan
id="tspan4636"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="263.7381"
x="-41.95536" /><tspan
id="tspan4638"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="268.58881"
x="-41.95536"> <tspan
id="tspan4904"
style="fill:#808080">// Put the home location of the web site.</tspan></tspan><tspan
id="tspan4640"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="273.43948"
x="-41.95536"> <tspan
id="tspan4906"
style="fill:#808080">// But in usually, setting the home uri is not needed cause default location is &quot;/&quot;.</tspan></tspan><tspan
id="tspan4642"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="278.29019"
x="-41.95536"> <tspan
id="tspan4908"
style="fill:#808080">//portal.home(&quot;/&quot;);</tspan></tspan><tspan
id="tspan4644"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="283.14087"
x="-41.95536" /><tspan
id="tspan4646"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="287.99158"
x="-41.95536"> server.<tspan
id="tspan4910"
style="fill:#ff6600">on</tspan>(<tspan
id="tspan4912"
style="fill:#003399">&quot;/&quot;</tspan>, handleRoot);</tspan><tspan
id="tspan4648"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="292.84225"
x="-41.95536"> server.<tspan
id="tspan4916"
style="fill:#ff6600">on</tspan>(<tspan
id="tspan4914"
style="fill:#003399">&quot;/io&quot;</tspan>, handleGPIO);</tspan><tspan
id="tspan4650"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="297.69296"
x="-41.95536" /><tspan
id="tspan4652"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="302.54364"
x="-41.95536"> // Starts user web site included the AutoConnect portal.</tspan><tspan
id="tspan4654"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="307.39435"
x="-41.95536"> <tspan
id="tspan4934"
style="fill:#808080">if</tspan> (portal.<tspan
id="tspan4918"
style="fill:#ff6600">begin</tspan>()) {</tspan><tspan
id="tspan4656"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="312.24506"
x="-41.95536"> <tspan
id="tspan4920"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4922"
style="fill:#ff6600">println</tspan>(<tspan
id="tspan4924"
style="fill:#003399">&quot;Started, IP:&quot;</tspan> + <tspan
id="tspan4926"
style="fill:#ff6600">WiFi</tspan>.<tspan
id="tspan4928"
style="fill:#ff6600">localIP</tspan>().<tspan
id="tspan4930"
style="fill:#ff6600">toString</tspan>());</tspan><tspan
id="tspan4658"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="317.09573"
x="-41.95536"> }</tspan><tspan
id="tspan4660"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="321.94644"
x="-41.95536"> <tspan
id="tspan4936"
style="fill:#808080">else</tspan> {</tspan><tspan
id="tspan4662"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="326.79712"
x="-41.95536"> <tspan
id="tspan4938"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4940"
style="fill:#ff6600">println</tspan>(<tspan
id="tspan4942"
style="fill:#003399">&quot;Connection failed.&quot;</tspan>);</tspan><tspan
id="tspan4664"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="331.64783"
x="-41.95536"> <tspan
id="tspan4944"
style="fill:#808080">while</tspan> (<tspan
id="tspan4946"
style="fill:#3366cc">true</tspan>) { <tspan
id="tspan4948"
style="fill:#ff6600">yield</tspan>(); }</tspan><tspan
id="tspan4666"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="336.4985"
x="-41.95536"> }</tspan><tspan
id="tspan4668"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="341.34921"
x="-41.95536">}</tspan><tspan
id="tspan4670"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="346.19989"
x="-41.95536" /><tspan
id="tspan4672"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="351.0506"
x="-41.95536"><tspan
id="tspan4950"
style="fill:#3366cc">void</tspan> loop() {</tspan><tspan
id="tspan4674"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="355.90131"
x="-41.95536"> server.<tspan
id="tspan4952"
style="fill:#ff6600">handleClient</tspan>();</tspan><tspan
id="tspan4676"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="360.75198"
x="-41.95536"> portal.<tspan
id="tspan4954"
style="fill:#ff6600">handleRequest</tspan>(); // Need to handle AutoConnect menu.</tspan><tspan
id="tspan4678"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="365.60269"
x="-41.95536"> <tspan
id="tspan4966"
style="fill:#808080">if</tspan> (<tspan
id="tspan4956"
style="fill:#ff6600">WiFi</tspan>.<tspan
id="tspan4958"
style="fill:#ff6600">status</tspan>() == <tspan
id="tspan4960"
style="fill:#3366cc">WL_IDLE_STATUS</tspan>) {</tspan><tspan
id="tspan4680"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="370.45337"
x="-41.95536"> ESP.<tspan
id="tspan4962"
style="fill:#ff6600">reset</tspan>();</tspan><tspan
id="tspan4682"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="375.30408"
x="-41.95536"> <tspan
id="tspan4964"
style="fill:#ff6600">delay</tspan>(1000);</tspan><tspan
id="tspan4684"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="380.15475"
x="-41.95536"> }</tspan><tspan
id="tspan4686"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="385.00546"
x="-41.95536">}</tspan><tspan
id="tspan4688"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="389.85617"
x="-41.95536" /></text>
</g>
<g
style="display:inline"
id="layer3">
<path
d="m 119.94348,375.62042 -8.69884,-5.02228 8.69884,-5.02227 z"
id="path4984-8-8"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.2659663, 2.2659663;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<text
id="text4702"
y="28.892231"
x="94.665428"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="28.892231"
x="94.665428"
id="tspan4700">1. Declare AutoConnect</tspan><tspan
id="tspan4972"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="35.065842"
x="94.665428"> and bind it to ESP8266WebServer</tspan></text>
<text
id="text4702-1"
y="349.37784"
x="115.7594"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="349.37784"
x="115.7594"
id="tspan4700-2">2. Register request handlers</tspan><tspan
id="tspan4974"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="355.55145"
x="115.7594"> to ESP8266WebServer</tspan></text>
<text
id="text4702-1-3"
y="368.79718"
x="122.43944"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="368.79718"
x="122.43944"
id="tspan4700-2-3">3. Start AutoConnect,</tspan><tspan
id="tspan4976"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="374.97079"
x="122.43944"> no need server.begin()</tspan></text>
<text
id="text4702-1-3-9"
y="417.13007"
x="121.19266"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="417.13007"
x="121.19266"
id="tspan4700-2-3-5">4. Perform handleClient</tspan><tspan
id="tspan4978"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="423.30368"
x="121.19266"> for ESP8266WebServer</tspan></text>
<text
id="text4702-1-3-9-5"
y="429.72409"
x="121.46516"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="429.72409"
x="121.46516"
id="tspan4700-2-3-5-1">5. Perform handleRequest</tspan><tspan
id="tspan4980"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="435.89771"
x="121.46516"> for AutoConnect</tspan></text>
<path
d="m 92.895309,35.166107 -8.698836,-5.022276 8.698836,-5.022275 z"
id="path4984"
style="opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596625, 2.26596625;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<path
d="m 113.91916,355.65173 -8.69884,-5.02227 8.69884,-5.02228 z"
id="path4984-8"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596627, 2.26596627;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<path
d="m 119.14169,423.39187 -8.69884,-5.02227 8.69884,-5.02228 z"
id="path4984-8-8-1"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596632, 2.26596632;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<path
d="m 119.14169,435.9823 -8.69884,-5.02228 8.69884,-5.02227 z"
id="path4984-8-8-6"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596632, 2.26596632;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

@ -0,0 +1,697 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 191.10721 454.36032"
height="454.36032mm"
width="191.10721mm">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(5.0000008,4.9999992)"
id="layer2">
<path
id="path4982"
style="fill:none;stroke:#000000;stroke-width:0.0264583px"
d="M -4.9867716,-4.9999882 V 449.36032 M 0.30489485,-4.9999882 V 449.36032 M 5.5965614,-4.9999882 V 449.36032 M 10.888228,-4.9999882 V 449.36032 M 16.179894,-4.9999882 V 449.36032 M 21.471561,-4.9999882 V 449.36032 M 26.763227,-4.9999882 V 449.36032 M 32.054894,-4.9999882 V 449.36032 M 37.34656,-4.9999882 V 449.36032 M 42.638227,-4.9999882 V 449.36032 M 47.929893,-4.9999882 V 449.36032 M 53.22156,-4.9999882 V 449.36032 M 58.513227,-4.9999882 V 449.36032 M 63.804893,-4.9999882 V 449.36032 M 69.09656,-4.9999882 V 449.36032 M 74.388226,-4.9999882 V 449.36032 M 79.679893,-4.9999882 V 449.36032 M 84.971559,-4.9999882 V 449.36032 M 90.263226,-4.9999882 V 449.36032 M 95.554888,-4.9999882 V 449.36032 M 100.84656,-4.9999882 V 449.36032 M 106.13823,-4.9999882 V 449.36032 M 111.42989,-4.9999882 V 449.36032 M 116.72156,-4.9999882 V 449.36032 M 122.01323,-4.9999882 V 449.36032 M 127.30489,-4.9999882 V 449.36032 M 132.59656,-4.9999882 V 449.36032 M 137.88823,-4.9999882 V 449.36032 M 143.17989,-4.9999882 V 449.36032 M 148.47156,-4.9999882 V 449.36032 M 153.76323,-4.9999882 V 449.36032 M 159.05489,-4.9999882 V 449.36032 M 164.34656,-4.9999882 V 449.36032 M 169.63823,-4.9999882 V 449.36032 M 174.92989,-4.9999882 V 449.36032 M 180.22156,-4.9999882 V 449.36032 M 185.51323,-4.9999882 V 449.36032 M -4.9867716,-4.9999882 H 186.12043 M -4.9867716,0.29167834 H 186.12043 M -4.9867716,5.5833448 H 186.12043 M -4.9867716,10.875012 H 186.12043 M -4.9867716,16.166678 H 186.12043 M -4.9867716,21.458345 H 186.12043 M -4.9867716,26.750011 H 186.12043 M -4.9867716,32.041678 H 186.12043 M -4.9867716,37.333344 H 186.12043 M -4.9867716,42.625011 H 186.12043 M -4.9867716,47.916677 H 186.12043 M -4.9867716,53.208344 H 186.12043 M -4.9867716,58.500011 H 186.12043 M -4.9867716,63.791677 H 186.12043 M -4.9867716,69.083344 H 186.12043 M -4.9867716,74.37501 H 186.12043 M -4.9867716,79.666677 H 186.12043 M -4.9867716,84.958343 H 186.12043 M -4.9867716,90.25001 H 186.12043 M -4.9867716,95.541672 H 186.12043 M -4.9867716,100.83334 H 186.12043 M -4.9867716,106.12501 H 186.12043 M -4.9867716,111.41667 H 186.12043 M -4.9867716,116.70834 H 186.12043 M -4.9867716,122.00001 H 186.12043 M -4.9867716,127.29167 H 186.12043 M -4.9867716,132.58334 H 186.12043 M -4.9867716,137.87501 H 186.12043 M -4.9867716,143.16667 H 186.12043 M -4.9867716,148.45834 H 186.12043 M -4.9867716,153.75001 H 186.12043 M -4.9867716,159.04167 H 186.12043 M -4.9867716,164.33334 H 186.12043 M -4.9867716,169.62501 H 186.12043 M -4.9867716,174.91667 H 186.12043 M -4.9867716,180.20834 H 186.12043 M -4.9867716,185.50001 H 186.12043 M -4.9867716,190.79167 H 186.12043 M -4.9867716,196.08334 H 186.12043 M -4.9867716,201.37501 H 186.12043 M -4.9867716,206.66667 H 186.12043 M -4.9867716,211.95834 H 186.12043 M -4.9867716,217.25001 H 186.12043 M -4.9867716,222.54167 H 186.12043 M -4.9867716,227.83334 H 186.12043 M -4.9867716,233.125 H 186.12043 M -4.9867716,238.41667 H 186.12043 M -4.9867716,243.70834 H 186.12043 M -4.9867716,249 H 186.12043 M -4.9867716,254.29167 H 186.12043 M -4.9867716,259.58334 H 186.12043 M -4.9867716,264.875 H 186.12043 M -4.9867716,270.16667 H 186.12043 M -4.9867716,275.45834 H 186.12043 M -4.9867716,280.75 H 186.12043 M -4.9867716,286.04167 H 186.12043 M -4.9867716,291.33334 H 186.12043 M -4.9867716,296.625 H 186.12043 M -4.9867716,301.91667 H 186.12043 M -4.9867716,307.20834 H 186.12043 M -4.9867716,312.5 H 186.12043 M -4.9867716,317.79167 H 186.12043 M -4.9867716,323.08334 H 186.12043 M -4.9867716,328.375 H 186.12043 M -4.9867716,333.66667 H 186.12043 M -4.9867716,338.95834 H 186.12043 M -4.9867716,344.25 H 186.12043 M -4.9867716,349.54167 H 186.12043 M -4.9867716,354.83334 H 186.12043 M -4.9867716,360.125 H 186.12043 M -4.9867716,365.41667 H 186.12043 M -4.9867716,370.70834 H 186.12043 M -4.9867716,376 H 186.12043 M -4.9867716,381.29167 H 186.12043 M -4.9867716,386.58333 H 186.12043 M -4.9867716,391.875 H 186.12043 M -4.9867716,397.16667 H 186.12043 M -4.9867716,402.45833 H 186.12043 M -4.9867716,407.75 H 186.12043 M -4.9867716,413.04167 H 186.12043 M -4.9867716,418.33333 H 186.12043 M -4.9867716,423.625 H 186.12043 M -4.9867716,428.91667 H 186.12043 M -4.9867716,434.20833 H 186.12043 M -4.9867716,439.5 H 186.12043 M -4.9867716,444.79167 H 186.12043" />
</g>
<g
style="display:inline"
transform="translate(46.95536,63.837051)"
id="layer1">
<text
id="text4506"
y="-56.407742"
x="-41.95536"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.88055563px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-56.407742"
x="-41.95536"
id="tspan4504"><tspan
id="tspan4776"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan4780"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Italic'">ESP8266WiFi.h</tspan>&gt;</tspan><tspan
id="tspan4508"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-51.557049"
x="-41.95536"><tspan
id="tspan4778"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan4782"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Italic'">ESP8266WebServer.h</tspan>&gt;</tspan><tspan
id="tspan4510"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-46.706352"
x="-41.95536"><tspan
id="tspan4786"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan4784"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:'monospace Italic'">AutoConnect.h</tspan>&gt;</tspan><tspan
id="tspan4512"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-41.855659"
x="-41.95536" /><tspan
id="tspan4516"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-37.004963"
x="-41.95536"><tspan
id="tspan4790"
style="fill:#ff6600">AutoConnect </tspan>portal;</tspan><tspan
id="tspan4518"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-32.15427"
x="-41.95536" /><tspan
id="tspan4520"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-27.303574"
x="-41.95536"><tspan
id="tspan4792"
style="fill:#3366cc">void</tspan> handleRoot() {</tspan><tspan
id="tspan4522"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="-22.452879"
x="-41.95536"> <tspan
id="tspan4794"
style="fill:#3366cc">String</tspan> page = PSTR(</tspan><tspan
id="tspan4524"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-17.602184"
x="-41.95536">&quot;&lt;html&gt;&quot;</tspan><tspan
id="tspan4526"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-12.751491"
x="-41.95536">&quot;&lt;/head&gt;&quot;</tspan><tspan
id="tspan4528"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-7.9007959"
x="-41.95536"> &quot;&lt;meta name=\&quot;viewport\&quot; content=\&quot;width=device-width, initial-scale=1\&quot;&gt;&quot;</tspan><tspan
id="tspan4530"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="-3.0501018"
x="-41.95536"> &quot;&lt;style type=\&quot;text/css\&quot;&gt;&quot;</tspan><tspan
id="tspan4532"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="1.8005929"
x="-41.95536"> &quot;body {&quot;</tspan><tspan
id="tspan4534"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="6.6512876"
x="-41.95536"> &quot;-webkit-appearance:none;&quot;</tspan><tspan
id="tspan4536"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="11.501982"
x="-41.95536"> &quot;-moz-appearance:none;&quot;</tspan><tspan
id="tspan4538"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="16.352676"
x="-41.95536"> &quot;font-family:'Arial',sans-serif;&quot;</tspan><tspan
id="tspan4540"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="21.203371"
x="-41.95536"> &quot;text-align:center;&quot;</tspan><tspan
id="tspan4542"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="26.054066"
x="-41.95536"> &quot;}&quot;</tspan><tspan
id="tspan4544"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="30.90476"
x="-41.95536"> &quot;.menu {&quot;</tspan><tspan
id="tspan4546"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="35.755455"
x="-41.95536"> &quot;text-align:right;&quot;</tspan><tspan
id="tspan4548"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="40.606148"
x="-41.95536"> &quot;}&quot;</tspan><tspan
id="tspan4550"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="45.456844"
x="-41.95536"> &quot;.button {&quot;</tspan><tspan
id="tspan4552"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="50.307537"
x="-41.95536"> &quot;display:inline-block;&quot;</tspan><tspan
id="tspan4554"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="55.158234"
x="-41.95536"> &quot;border-radius:7px;&quot;</tspan><tspan
id="tspan4556"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="60.008926"
x="-41.95536"> &quot;background:#73ad21;&quot;</tspan><tspan
id="tspan4558"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="64.859619"
x="-41.95536"> &quot;margin:0 10px 0 10px;&quot;</tspan><tspan
id="tspan4560"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="69.71032"
x="-41.95536"> &quot;padding:10px 20px 10px 20px;&quot;</tspan><tspan
id="tspan4562"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="74.561012"
x="-41.95536"> &quot;text-decoration:none;&quot;</tspan><tspan
id="tspan4564"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="79.411705"
x="-41.95536"> &quot;color:#000000;&quot;</tspan><tspan
id="tspan4566"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="84.262398"
x="-41.95536"> &quot;}&quot;</tspan><tspan
id="tspan4568"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="89.113098"
x="-41.95536"> &quot;&lt;/style&gt;&quot;</tspan><tspan
id="tspan4570"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="93.963791"
x="-41.95536">&quot;&lt;/head&gt;&quot;</tspan><tspan
id="tspan4572"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="98.814484"
x="-41.95536">&quot;&lt;body&gt;&quot;</tspan><tspan
id="tspan4574"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="103.66518"
x="-41.95536"> &quot;&lt;p class=\&quot;menu\&quot;&gt;&quot; <tspan
id="tspan4798"
style="fill:#000000">AUTOCONNECT_LINK(BAR_32)</tspan> &quot;&lt;/p&gt;&quot;</tspan><tspan
id="tspan4576"
style="font-size:3.17499995px;fill:#003399;stroke-width:0.26458332"
y="108.51587"
x="-41.95536"> &quot;BUILT-IN LED&lt;br&gt;&quot;</tspan><tspan
id="tspan4578"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="113.36657"
x="-41.95536"><tspan
id="tspan4796"
style="fill:#003399"> &quot;GPIO(&quot;</tspan>);</tspan><tspan
id="tspan4580"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="118.21726"
x="-41.95536"> page += <tspan
id="tspan4800"
style="fill:#3366cc">String</tspan>(BUILTIN_LED);</tspan><tspan
id="tspan4582"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="123.06796"
x="-41.95536"> page += <tspan
id="tspan4802"
style="fill:#3366cc">String</tspan>(F(<tspan
id="tspan4804"
style="fill:#003399">&quot;) : &lt;span style=\&quot;font-weight:bold;color:&quot;</tspan>));</tspan><tspan
id="tspan4584"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="127.91865"
x="-41.95536"> page += <tspan
id="tspan4806"
style="fill:#ff6600">digitalRead</tspan>(BUILTIN_LED) ? <tspan
id="tspan4808"
style="fill:#3366cc">String</tspan>(<tspan
id="tspan4812"
style="fill:#003399">&quot;Tomato\&quot;&gt;HIGH&quot;</tspan>) : <tspan
id="tspan4814"
style="fill:#3366cc">String</tspan>(<tspan
id="tspan4816"
style="fill:#003399">&quot;SlateBlue\&quot;&gt;LOW&quot;</tspan>);</tspan><tspan
id="tspan4586"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="132.76935"
x="-41.95536"> page += <tspan
id="tspan4818"
style="fill:#ff6600">String</tspan>(F(<tspan
id="tspan4820"
style="fill:#003399">&quot;&lt;/span&gt;&quot;</tspan>));</tspan><tspan
id="tspan4588"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="137.62004"
x="-41.95536"> page += <tspan
id="tspan4822"
style="fill:#ff6600">String</tspan>(F(<tspan
id="tspan4826"
style="fill:#003399">&quot;&lt;p&gt;&lt;a class=\&quot;button\&quot; href=\&quot;/io?v=low\&quot;&gt;low&lt;/a&gt;</tspan></tspan><tspan
id="tspan4968"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="142.47073"
x="-41.95536"><tspan
id="tspan4970"
style="fill:#003399"> &lt;a class=\&quot;button\&quot; href=\&quot;/io?v=high\&quot;&gt;high&lt;/a&gt;&lt;/p&gt;&quot;</tspan>));</tspan><tspan
id="tspan4590"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="147.32143"
x="-41.95536"> page += <tspan
id="tspan4824"
style="fill:#ff6600">String</tspan>(F(<tspan
id="tspan4828"
style="fill:#003399">&quot;&lt;/body&gt;&lt;/html&gt;&quot;</tspan>));</tspan><tspan
id="tspan4592"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="152.17212"
x="-41.95536"> portal.<tspan
id="tspan5104"
style="fill:#ff6600">host</tspan>().<tspan
id="tspan4832"
style="fill:#ff6600">send</tspan>(200, <tspan
id="tspan4834"
style="fill:#003399">&quot;text/html&quot;</tspan>, page);</tspan><tspan
id="tspan4594"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="157.02281"
x="-41.95536">}</tspan><tspan
id="tspan4596"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="161.87352"
x="-41.95536" /><tspan
id="tspan4598"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="166.72421"
x="-41.95536"><tspan
id="tspan4836"
style="fill:#3366cc">void</tspan> handleGPIO() {</tspan><tspan
id="tspan5040"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="171.57491"
x="-41.95536"> <tspan
id="tspan5088"
style="fill:#ff6600">ESP8266WebServer</tspan>&amp; server = portal.<tspan
id="tspan5084"
style="fill:#ff6600">host</tspan>();</tspan><tspan
id="tspan4600"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="176.4256"
x="-41.95536"> <tspan
id="tspan4838"
style="fill:#808080">if</tspan> (server.<tspan
id="tspan4842"
style="fill:#ff6600">arg</tspan>(<tspan
id="tspan4844"
style="fill:#003399">&quot;v&quot;</tspan>) == <tspan
id="tspan4846"
style="fill:#003399">&quot;low&quot;</tspan>)</tspan><tspan
id="tspan4602"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="181.27629"
x="-41.95536"> <tspan
id="tspan4850"
style="fill:#ff6600">digitalWrite</tspan>(BUILTIN_LED, <tspan
id="tspan4852"
style="fill:#ff6600">LOW</tspan>);</tspan><tspan
id="tspan4604"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="186.12698"
x="-41.95536"> <tspan
id="tspan4860"
style="fill:#808080">else</tspan> <tspan
id="tspan4862"
style="fill:#808080">if</tspan> (server.<tspan
id="tspan4858"
style="fill:#ff6600">arg</tspan>(<tspan
id="tspan4856"
style="fill:#003399">&quot;v&quot;</tspan>) == <tspan
id="tspan4854"
style="fill:#003399">&quot;high&quot;</tspan>)</tspan><tspan
id="tspan4606"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="190.97768"
x="-41.95536"> <tspan
id="tspan4864"
style="fill:#ff6600">digitalWrite</tspan>(BUILTIN_LED, <tspan
id="tspan4866"
style="fill:#ff6600">HIGH</tspan>);</tspan><tspan
id="tspan4608"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="195.82837"
x="-41.95536"> sendRedirect(&quot;/&quot;);</tspan><tspan
id="tspan4610"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="200.67906"
x="-41.95536">}</tspan><tspan
id="tspan4612"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="205.52977"
x="-41.95536" /><tspan
id="tspan4614"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="210.38046"
x="-41.95536"><tspan
id="tspan4868"
style="fill:#3366cc">void</tspan> sendRedirect(<tspan
id="tspan4870"
style="fill:#3366cc">String</tspan> uri) {</tspan><tspan
id="tspan5042"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="215.23116"
x="-41.95536"> <tspan
id="tspan5090"
style="fill:#ff6600">ESP8266WebServer</tspan>&amp; server = portal.<tspan
id="tspan5086"
style="fill:#ff6600">host</tspan>();</tspan><tspan
id="tspan4616"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="220.08185"
x="-41.95536"> server.<tspan
id="tspan4872"
style="fill:#ff6600">sendHeader</tspan>(<tspan
id="tspan4874"
style="fill:#003399">&quot;Location&quot;</tspan>, uri, <tspan
id="tspan4876"
style="fill:#3366cc">true</tspan>);</tspan><tspan
id="tspan4618"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="224.93254"
x="-41.95536"> server.<tspan
id="tspan4880"
style="fill:#ff6600">send</tspan>(302, &quot;text/plain&quot;, <tspan
id="tspan4878"
style="fill:#003399">&quot;&quot;</tspan>);</tspan><tspan
id="tspan4620"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="229.78323"
x="-41.95536"> server.<tspan
id="tspan4884"
style="fill:#ff6600">client</tspan>().<tspan
id="tspan4886"
style="fill:#ff6600">stop</tspan>();</tspan><tspan
id="tspan4622"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="234.63393"
x="-41.95536">}</tspan><tspan
id="tspan4624"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="239.48462"
x="-41.95536" /><tspan
id="tspan4626"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="244.33533"
x="-41.95536"><tspan
id="tspan4890"
style="fill:#3366cc">void</tspan> setup() {</tspan><tspan
id="tspan4628"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="249.18602"
x="-41.95536"> <tspan
id="tspan4888"
style="fill:#ff6600">delay</tspan>(1000);</tspan><tspan
id="tspan4630"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="254.03671"
x="-41.95536"> <tspan
id="tspan4892"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4894"
style="fill:#ff6600">begin</tspan>(115200);</tspan><tspan
id="tspan4632"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="258.88739"
x="-41.95536"> <tspan
id="tspan4898"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4896"
style="fill:#ff6600">println</tspan>();</tspan><tspan
id="tspan4634"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="263.7381"
x="-41.95536"> <tspan
id="tspan4900"
style="fill:#ff6600">pinMode</tspan>(BUILTIN_LED, <tspan
id="tspan4902"
style="fill:#ff6600">OUTPUT</tspan>);</tspan><tspan
id="tspan4636"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="268.58881"
x="-41.95536" /><tspan
id="tspan4638"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="273.43948"
x="-41.95536"> <tspan
id="tspan4904"
style="fill:#808080">// Put the home location of the web site.</tspan></tspan><tspan
id="tspan4640"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="278.29019"
x="-41.95536"> <tspan
id="tspan4906"
style="fill:#808080">// But in usually, setting the home uri is not needed cause default location is &quot;/&quot;.</tspan></tspan><tspan
id="tspan4642"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="283.14087"
x="-41.95536"> <tspan
id="tspan4908"
style="fill:#808080">//portal.home(&quot;/&quot;);</tspan></tspan><tspan
id="tspan4644"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="287.99158"
x="-41.95536" /><tspan
id="tspan4652"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="292.84225"
x="-41.95536"> // Starts user web site included the AutoConnect portal.</tspan><tspan
id="tspan4654"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="297.69296"
x="-41.95536"> <tspan
id="tspan4934"
style="fill:#808080">if</tspan> (portal.<tspan
id="tspan4918"
style="fill:#ff6600">begin</tspan>()) {</tspan><tspan
id="tspan4656"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="302.54364"
x="-41.95536"> <tspan
id="tspan5092"
style="fill:#ff6600">ESP8266WebServer</tspan>&amp; server = portal.<tspan
id="tspan5094"
style="fill:#ff6600">host</tspan>();</tspan><tspan
id="tspan5044"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="307.39435"
x="-41.95536"> server.<tspan
id="tspan5096"
style="fill:#ff6600">on</tspan>(<tspan
id="tspan5100"
style="fill:#003399">&quot;/&quot;</tspan>, handleRoot);</tspan><tspan
id="tspan5052"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="312.24506"
x="-41.95536"> server.<tspan
id="tspan5098"
style="fill:#ff6600">on</tspan>(<tspan
id="tspan5102"
style="fill:#003399">&quot;/io&quot;</tspan>, handleGPIO);</tspan><tspan
id="tspan5060"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="317.09573"
x="-41.95536"> <tspan
id="tspan4920"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4922"
style="fill:#ff6600">println</tspan>(<tspan
id="tspan4924"
style="fill:#003399">&quot;Started, IP:&quot;</tspan> + <tspan
id="tspan4926"
style="fill:#ff6600">WiFi</tspan>.<tspan
id="tspan4928"
style="fill:#ff6600">localIP</tspan>().<tspan
id="tspan4930"
style="fill:#ff6600">toString</tspan>());</tspan><tspan
id="tspan4658"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="321.94644"
x="-41.95536"> }</tspan><tspan
id="tspan4660"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="326.79712"
x="-41.95536"> <tspan
id="tspan4936"
style="fill:#808080">else</tspan> {</tspan><tspan
id="tspan4662"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="331.64783"
x="-41.95536"> <tspan
id="tspan4938"
style="fill:#ff6600">Serial</tspan>.<tspan
id="tspan4940"
style="fill:#ff6600">println</tspan>(<tspan
id="tspan4942"
style="fill:#003399">&quot;Connection failed.&quot;</tspan>);</tspan><tspan
id="tspan4664"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="336.4985"
x="-41.95536"> <tspan
id="tspan4944"
style="fill:#808080">while</tspan> (<tspan
id="tspan4946"
style="fill:#3366cc">true</tspan>) { <tspan
id="tspan4948"
style="fill:#ff6600">yield</tspan>(); }</tspan><tspan
id="tspan4666"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="341.34921"
x="-41.95536"> }</tspan><tspan
id="tspan4668"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="346.19989"
x="-41.95536">}</tspan><tspan
id="tspan4670"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="351.0506"
x="-41.95536" /><tspan
id="tspan4672"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="355.90131"
x="-41.95536"><tspan
id="tspan4950"
style="fill:#3366cc">void</tspan> loop() {</tspan><tspan
id="tspan4676"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="360.75198"
x="-41.95536"> portal.<tspan
id="tspan4954"
style="fill:#ff6600">handleClient</tspan>(); // Need handleClient only.</tspan><tspan
id="tspan4678"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="365.60269"
x="-41.95536"> <tspan
id="tspan4966"
style="fill:#808080">if</tspan> (<tspan
id="tspan4956"
style="fill:#ff6600">WiFi</tspan>.<tspan
id="tspan4958"
style="fill:#ff6600">status</tspan>() == <tspan
id="tspan4960"
style="fill:#3366cc">WL_IDLE_STATUS</tspan>) {</tspan><tspan
id="tspan4680"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="370.45337"
x="-41.95536"> ESP.<tspan
id="tspan4962"
style="fill:#ff6600">reset</tspan>();</tspan><tspan
id="tspan4682"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="375.30408"
x="-41.95536"> <tspan
id="tspan4964"
style="fill:#ff6600">delay</tspan>(1000);</tspan><tspan
id="tspan4684"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="380.15475"
x="-41.95536"> }</tspan><tspan
id="tspan4686"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="385.00546"
x="-41.95536">}</tspan><tspan
id="tspan4688"
style="font-size:3.17499995px;stroke-width:0.26458332"
y="389.85617"
x="-41.95536" /></text>
</g>
<g
style="display:inline"
id="layer3">
<path
d="m 119.94348,365.5661 -8.69884,-5.02228 8.69884,-5.02227 z"
id="path4984-8-8"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.2659663, 2.2659663;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<text
id="text4702"
y="27.289909"
x="115.3639"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
id="tspan4972"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="27.289909"
x="115.3639">1. Declare AutoConnect only</tspan></text>
<text
id="text4702-1"
y="373.71988"
x="115.7594"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="373.71988"
x="115.7594"
id="tspan4700-2">4. Register request handlers</tspan><tspan
id="tspan4974"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="379.89349"
x="115.7594"> to ESP8266WebServer</tspan></text>
<text
id="text4702-1-3"
y="358.74286"
x="122.43944"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="358.74286"
x="122.43944"
id="tspan4700-2-3">3. Start AutoConnect,</tspan><tspan
id="tspan4976"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="364.91647"
x="122.43944"> no need server.begin()</tspan></text>
<text
id="text4702-1-3-9-5"
y="422.84482"
x="127.32045"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="422.84482"
x="127.32045"
id="tspan4700-2-3-5-1">4. Perform handleClient</tspan><tspan
id="tspan4980"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="429.01843"
x="127.32045"> for AutoConnect</tspan></text>
<path
d="m 113.53278,30.932772 -8.69884,-5.022277 8.69884,-5.022275 z"
id="path4984"
style="opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596625, 2.26596625;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<path
d="m 113.91916,379.99377 -8.69884,-5.02227 8.69884,-5.02228 z"
id="path4984-8"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596627, 2.26596627;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<path
d="m 124.96248,429.10303 -8.69884,-5.02228 8.69884,-5.02228 z"
id="path4984-8-8-6"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596632, 2.26596632;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
<text
id="text4702-2"
y="235.34866"
x="108.45959"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.93888855px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
id="tspan4972-5"
style="fill:#558c3d;fill-opacity:1;stroke-width:0.26458332"
y="235.34866"
x="108.45959">2. Refer to ESP8266WebServer</tspan></text>
<path
d="m 105.91244,238.99179 -8.698832,-5.02228 8.698842,-5.02227 z"
id="path4984-6"
style="display:inline;opacity:1;vector-effect:none;fill:#558c3d;fill-opacity:0.71119133;stroke:none;stroke-width:2.26596642;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.26596627, 2.26596627;stroke-dashoffset:0;stroke-opacity:0.74117647;paint-order:stroke markers fill" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

@ -0,0 +1,504 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 150.228 144.32257"
height="144.32257mm"
width="150.228mm">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-28.675957,-9.6488822)"
style="display:inline"
id="layer2">
<path
id="path897"
style="fill:none;stroke:#000000;stroke-width:0.0264583px"
d="M 0,0 V 296.99999 M 5.2916665,0 V 296.99999 M 10.583333,0 V 296.99999 M 15.875,0 V 296.99999 M 21.166666,0 V 296.99999 M 26.458333,0 V 296.99999 M 31.749999,0 V 296.99999 M 37.041666,0 V 296.99999 M 42.333332,0 V 296.99999 M 47.624999,0 V 296.99999 M 52.916665,0 V 296.99999 M 58.208332,0 V 296.99999 M 63.499999,0 V 296.99999 M 68.791665,0 V 296.99999 M 74.083332,0 V 296.99999 M 79.374998,0 V 296.99999 M 84.666665,0 V 296.99999 M 89.958331,0 V 296.99999 M 95.249998,0 V 296.99999 M 100.54166,0 V 296.99999 M 105.83333,0 V 296.99999 M 111.125,0 V 296.99999 M 116.41666,0 V 296.99999 M 121.70833,0 V 296.99999 M 127,0 V 296.99999 M 132.29166,0 V 296.99999 M 137.58333,0 V 296.99999 M 142.875,0 V 296.99999 M 148.16666,0 V 296.99999 M 153.45833,0 V 296.99999 M 158.75,0 V 296.99999 M 164.04166,0 V 296.99999 M 169.33333,0 V 296.99999 M 174.625,0 V 296.99999 M 179.91666,0 V 296.99999 M 185.20833,0 V 296.99999 M 190.5,0 V 296.99999 M 195.79166,0 V 296.99999 M 201.08333,0 V 296.99999 M 206.375,0 V 296.99999 M 0,0 H 210 M 0,5.2916665 H 210 M 0,10.583333 H 210 M 0,15.875 H 210 M 0,21.166666 H 210 M 0,26.458333 H 210 M 0,31.749999 H 210 M 0,37.041666 H 210 M 0,42.333332 H 210 M 0,47.624999 H 210 M 0,52.916665 H 210 M 0,58.208332 H 210 M 0,63.499999 H 210 M 0,68.791665 H 210 M 0,74.083332 H 210 M 0,79.374998 H 210 M 0,84.666665 H 210 M 0,89.958331 H 210 M 0,95.249998 H 210 M 0,100.54166 H 210 M 0,105.83333 H 210 M 0,111.125 H 210 M 0,116.41666 H 210 M 0,121.70833 H 210 M 0,127 H 210 M 0,132.29166 H 210 M 0,137.58333 H 210 M 0,142.875 H 210 M 0,148.16666 H 210 M 0,153.45833 H 210 M 0,158.75 H 210 M 0,164.04166 H 210 M 0,169.33333 H 210 M 0,174.625 H 210 M 0,179.91666 H 210 M 0,185.20833 H 210 M 0,190.5 H 210 M 0,195.79166 H 210 M 0,201.08333 H 210 M 0,206.375 H 210 M 0,211.66666 H 210 M 0,216.95833 H 210 M 0,222.24999 H 210 M 0,227.54166 H 210 M 0,232.83333 H 210 M 0,238.12499 H 210 M 0,243.41666 H 210 M 0,248.70833 H 210 M 0,253.99999 H 210 M 0,259.29166 H 210 M 0,264.58333 H 210 M 0,269.87499 H 210 M 0,275.16666 H 210 M 0,280.45833 H 210 M 0,285.74999 H 210 M 0,291.04166 H 210 M 0,296.33333 h 210" />
</g>
<g
transform="translate(-28.675957,-9.6488822)"
style="display:inline"
id="layer1">
<text
id="text817"
y="17.329166"
x="33.675957"
style="font-style:normal;font-weight:normal;font-size:3.52777767px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
xml:space="preserve"><tspan
style="font-size:3.52777767px;stroke-width:0.26458332"
y="17.329166"
x="33.675957"
id="tspan815"><tspan
id="tspan899"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan909"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Italic'">ESP8266WiFi.h</tspan>&gt;</tspan><tspan
id="tspan819"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="21.738888"
x="33.675957"><tspan
id="tspan905"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan915"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Italic'">ESP8266WebServer.h</tspan>&gt;</tspan><tspan
id="tspan821"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="26.148611"
x="33.675957"><tspan
id="tspan907"
style="fill:#669900">#include</tspan> &lt;<tspan
id="tspan921"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Italic'">AutoConnect.h</tspan>&gt;</tspan><tspan
id="tspan823"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="30.558332"
x="33.675957" /><tspan
id="tspan825"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="34.968056"
x="33.675957"><tspan
id="tspan923"
style="fill:#ff6600">ESP8266WebServer</tspan> Server;</tspan><tspan
id="tspan827"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="39.377777"
x="33.675957"><tspan
id="tspan927"
style="fill:#ff6600">AutoConnect</tspan> Portal(Server);</tspan><tspan
id="tspan829"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="43.787498"
x="33.675957" /><tspan
id="tspan831"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="48.19722"
x="33.675957"><tspan
id="tspan929"
style="fill:#3366cc">void</tspan> rootPage() {</tspan><tspan
id="tspan833"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="52.606941"
x="33.675957"> <tspan
id="tspan981"
style="fill:#3366cc">char</tspan> content[] = &quot;Hello, world&quot;;</tspan><tspan
id="tspan835"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="57.016666"
x="33.675957"> Server.<tspan
id="tspan955"
style="fill:#ff6600">send</tspan>(200, &quot;text/plain&quot;, content);</tspan><tspan
id="tspan837"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="61.426388"
x="33.675957">}</tspan><tspan
id="tspan839"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="65.836113"
x="33.675957" /><tspan
id="tspan841"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="70.245834"
x="33.675957"><tspan
id="tspan937"
style="fill:#3366cc">void</tspan> <tspan
id="tspan935"
style="fill:#808080">setup</tspan>() {</tspan><tspan
id="tspan843"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="74.655556"
x="33.675957"> <tspan
id="tspan949"
style="fill:#ff6600">delay</tspan>(1000);</tspan><tspan
id="tspan849"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="79.065277"
x="33.675957" /><tspan
id="tspan851"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="83.474998"
x="33.675957"> Server.<tspan
id="tspan947"
style="fill:#ff6600">on</tspan>(<tspan
id="tspan963"
style="fill:#003399">&quot;/&quot;</tspan>, rootPage);</tspan><tspan
id="tspan853"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="87.88472"
x="33.675957"> </tspan><tspan
id="tspan4825"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="92.294441"
x="33.675957"><tspan
id="tspan4827"
style="fill:#3366cc"> boolean</tspan> r = Portal.<tspan
id="tspan961"
style="fill:#ff6600">begin</tspan>();</tspan><tspan
id="tspan971"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="96.704163"
x="33.675957"> </tspan><tspan
id="tspan4830"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="101.11388"
x="33.675957"><tspan
id="tspan4832"
style="fill:#404040"> if</tspan> (!r) {</tspan><tspan
id="tspan855"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="105.52361"
x="33.675957"> <tspan
id="tspan945"
style="fill:#ff6600">delay</tspan>(1000);<tspan
id="tspan969"
style="fill:#003399"></tspan></tspan><tspan
id="tspan5494"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="109.93333"
x="33.675957"><tspan
id="tspan5496"
style="fill:#003399"> </tspan>ESP.reset();</tspan><tspan
id="tspan857"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="114.34306"
x="33.675957"> }</tspan><tspan
id="tspan859"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="118.75278"
x="33.675957">}</tspan><tspan
id="tspan861"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="123.1625"
x="33.675957" /><tspan
id="tspan863"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="127.57222"
x="33.675957"><tspan
id="tspan939"
style="fill:#3366cc">void</tspan> loop() {</tspan><tspan
id="tspan865"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="131.98193"
x="33.675957"> Server.<tspan
id="tspan941"
style="fill:#ff6600">handleClient</tspan>();</tspan><tspan
id="tspan867"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="136.39166"
x="33.675957">}</tspan><tspan
id="tspan869"
style="font-size:3.52777767px;stroke-width:0.26458332"
y="140.80139"
x="33.675957" /></text>
</g>
<g
transform="translate(-28.675957,-9.6488822)"
id="layer3">
<g
transform="translate(7.0295931,1.4967093)"
id="g5584">
<g
id="g5577">
<rect
y="120.4157"
x="96.916679"
height="26.788187"
width="69.782677"
id="rect987-6-7-1-5-4"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.34999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="120.4157"
x="96.90123"
height="26.884048"
width="2.7517393"
id="rect985-1-0-3-6-7"
style="opacity:1;fill:#c8aabd;fill-opacity:1;stroke:#c8aabd;stroke-width:0.34999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="102.72446"
y="126.50675"
id="text5481-6"><tspan
id="tspan5479-9"
x="102.72446"
y="126.50675"
style="stroke-width:0.26458332">loop()</tspan></text>
</g>
<g
transform="translate(7.0295931,1.4967093)"
id="g5536">
<g
id="g5529">
<rect
y="63.351486"
x="96.967033"
height="52.881226"
width="69.681969"
id="rect987-6-7-1-5"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.34999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="63.335812"
x="96.949257"
height="52.912579"
width="2.6556907"
id="rect985-1-0-3-6"
style="opacity:1;fill:#c8aabd;fill-opacity:1;stroke:#c8aabd;stroke-width:0.34999999;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="102.72446"
y="69.392189"
id="text5481"><tspan
id="tspan5479"
x="102.72446"
y="69.392189"
style="stroke-width:0.26458332">setup()</tspan></text>
</g>
<g
transform="translate(-30.012096,13.667544)"
id="g5450">
<g
id="g5117"
transform="translate(33.994579,-19.143525)">
<rect
y="82.389336"
x="104.77654"
height="10.649512"
width="61.649513"
id="rect987-6-9"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="82.389336"
x="104.77654"
height="10.655192"
width="2.6608834"
id="rect985-1-9"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="143.86685"
y="70.421936"
id="text995-0-8"><tspan
id="tspan993-7-0"
x="143.86685"
y="70.421936"
style="font-size:4.93888903px;stroke-width:0.26458332">Set URL handler</tspan></text>
</g>
<g
transform="translate(-30.012096,12.080043)"
id="g5443">
<g
transform="translate(33.994579,-8.488335)"
id="g5117-1">
<rect
y="82.389336"
x="104.77654"
height="10.649512"
width="61.649513"
id="rect987-6-9-8"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="82.389336"
x="104.77654"
height="10.655192"
width="2.6608834"
id="rect985-1-9-7"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="143.70769"
y="80.545097"
id="text995-0-8-6"><tspan
id="tspan993-7-0-9"
x="143.70769"
y="80.545097"
style="font-size:4.93888903px;stroke-width:0.26458332">Begin AutoConnect</tspan></text>
</g>
<g
transform="translate(-30.012096,12.080043)"
id="g5436">
<g
id="g5182"
transform="translate(2.8998751,-3.571875)">
<rect
y="92.892113"
x="135.87125"
height="10.649512"
width="61.649513"
id="rect987-6-9-9"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="92.892113"
x="135.87125"
height="10.655192"
width="2.6608834"
id="rect985-1-9-5"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="143.76074"
y="96.497292"
id="text995-0-6"><tspan
id="tspan993-7-8"
x="143.76074"
y="96.497292"
style="font-size:4.93888903px;stroke-width:0.26458332">Check connection</tspan></text>
</g>
<g
transform="translate(7.0295931,2.5550426)"
id="g5525">
<g
id="g5518">
<rect
y="129.02588"
x="101.72944"
height="10.649512"
width="61.649513"
id="rect987-6-9-9-1"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="129.02588"
x="101.72944"
height="10.655192"
width="2.6608834"
id="rect985-1-9-5-8"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="106.666"
y="135.73148"
id="text995-0-6-6"><tspan
id="tspan993-7-8-4"
x="106.666"
y="135.73148"
style="font-size:4.93888903px;stroke-width:0.26458332">Do handleClent()</tspan></text>
</g>
<g
transform="translate(-30.012096,1.4967093)"
id="g5472">
<g
id="g5182-0-5-1-3"
transform="translate(2.899875,-78.485552)">
<rect
y="92.892113"
x="135.87125"
height="10.649512"
width="61.649513"
id="rect987-6-9-9-1-3-5-2"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="92.892113"
x="135.87125"
height="10.655192"
width="2.6608834"
id="rect985-1-9-5-8-8-0-9"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="143.85994"
y="21.571556"
id="text995"><tspan
id="tspan993"
x="143.85994"
y="21.571556"
style="font-size:4.93888903px;stroke-width:0.26458332">Include directive</tspan></text>
</g>
<g
transform="translate(-30.012096,1.4967093)"
id="g5457">
<g
id="g5182-0-5"
transform="translate(2.899875,-45.969931)">
<rect
y="92.892113"
x="135.87125"
height="10.649512"
width="61.649513"
id="rect987-6-9-9-1-3"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="92.892113"
x="135.87125"
height="10.655192"
width="2.6608834"
id="rect985-1-9-5-8-8"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="143.76074"
y="54.099236"
id="text995-0"><tspan
id="tspan993-7"
x="143.76074"
y="54.099236"
style="font-size:4.93888903px;stroke-width:0.26458332">URL handler fucntion</tspan></text>
</g>
<g
transform="translate(-30.012096,1.4967093)"
id="g5465">
<g
id="g5182-0-5-1"
transform="translate(2.899875,-63.495841)">
<rect
y="92.892113"
x="135.87125"
height="10.649512"
width="61.649513"
id="rect987-6-9-9-1-3-5"
style="opacity:1;fill:#e4eeb3;fill-opacity:0.62745098;stroke:#7f7f7f;stroke-width:0.35048801;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
<rect
y="92.892113"
x="135.87125"
height="10.655192"
width="2.6608834"
id="rect985-1-9-5-8-8-0"
style="opacity:1;fill:#83bee2;fill-opacity:1;stroke:#83bee2;stroke-width:0.34480736;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.58611107px;line-height:3.79147911px;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
x="143.13184"
y="34.170132"
id="text995-9"><tspan
id="tspan4983"
x="143.13184"
y="34.170132"
style="font-size:3.88055563px;line-height:3.79147911px;stroke-width:0.26458332">Declare ESP8266WebServer</tspan><tspan
id="tspan4987"
x="143.13184"
y="38.164337"
style="font-size:3.88055563px;line-height:3.79147911px;stroke-width:0.26458332"> &amp; AutoConnect</tspan></text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

@ -0,0 +1,667 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="61.254677mm"
height="90.411896mm"
viewBox="0 0 61.254677 90.411896"
version="1.1"
id="svg8"
inkscape:export-filename="C:\Users\hiero\Documents\Arduino\libraries\AutoConnect\docs\images\menu_home.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
inkscape:version="0.92.1 r15371"
sodipodi:docname="menu_login.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="110.46944"
inkscape:cy="162.42716"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="レイヤー 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-15.436104,-38.574032)">
<image
y="38.574032"
x="15.436104"
id="image18"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAARTCAYAAAA0maZbAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI
WXMAAAsTAAALEwEAmpwYAAAgAElEQVR42uzdd1xV9R/H8TdTQAEBFUUBNyIO3Nvc2xxZqWmamtlw
/XJWppm2tNJKc2SpDa20NDU1d+69d04ExYWAgjJ/fyBXLveyccHr+XjweNz7veeec+/3Dt7n3M/3
eyyKlvKJFwAAAIAnmnVeZxd6AQAAAHjCWdIFAAAAAMEdAAAAAMEdAAAAILgDAAAAILgDAAAAILgD
AAAABHcAAAAABHcAAAAABHcAAACA4A4AAACA4A4AAAAQ3AEAAAAQ3AEAAAAQ3AEAAACCOwAAAACC
OwAAAACCOwAAAEBwBwAAAEBwBwAAAEBwBwAAAAjuAAAAAAjuAAAAAMEdAAAAAMEdAAAAAMEdAAAA
ILgDAAAAILgDAAAAILgDAAAABHcAAAAABHcAAACA4A4AAACA4A4AAACA4A4AAAAQ3AEAAAAQ3AEA
AAAQ3AEAAICnnDVdgKeBjY2NCri6ys3NVW4uLrp7757CwsMUGhqm4GvXFRsbSycBAPCItWvZXLKw
0PJV/zzWx9G2ZXPFxsZq1dr1BPecKL+zs6pUqmDSfinosk6fOcsn8TGzsrJSjar+atqooZo2bKCi
HkVSXDYiIlL7Dx3W3gMHtXz1Gl24GEAHAgDwkHVq31ZDXu8vC0sLOdjb67c/lz6Wx/FCpw5667W+
io6Okb29vf5ctiLH9rlF2aq143Pjm23ga/30Vv++Ju3HTp5Sp+69+DQ+rsBuaaluz3fWwNf6Kb+z
c4bvHxcXp3WbNmvG9/N05NhxOhQAgIegVbMmGjboTXkW9ZAkBV+7pm9mznnk4T0xtLsXLChJuhJ8
VZOmfqPlq9fkyH7PlTXuFhYW6tSujdnbyvuUVZlSJflEPgbVq/jrz1/macyItzMV2iXJ0tJSzRs/
o9/mfaf+vV+WhYUFHQsAQDazsrKSra2N4bp7wYJ667W+eqFTh8cW2iXJwtJCysH/+3NlqUzNalVT
Lb3o0KaVJn89/al7XmNGvK1KFcobrt+4cVMDhg5/Kh575/ZtNfH9d2RpmT37klaWlnp74Ovyr+in
QSPfVUxMDN+y4LMHANlkxeo1yuvgYBScE8O7pId+5N1caE886v+46+0J7g8hJKamXesW+mLaDMXF
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
aXu2TStN/XZWhtd14tRpXbt+w/QLytpaxb09VcTd3dDm61NWs6Z+rrbPd1fILd73AIDcw6Js1drx
OeXJVPTz1SXt5QsAACAASURBVO/z5sjCwkKSdPb8BQ0Z9Z5Onv7P7PK2tjYaPKC/+vXqIUmKjYtT
7wFvadfe/U/085w5dbIa1a8nSerx6uvave+A0e2FChZQMQ8PSdKFgADduBnCOx3ZqrxPWf35yzxJ
UvDVa3IvVFCSFBh0WU2ffS5dv1z9MmeGqvlXliQNHT1Gf/+zNsVl8+XNq5bNGmv8OyNlff9XpJVr
1mnIqPd4MQAAuUaOmlVm+KC3DKF9645d6tzjlRRDuyRFRUVr0lfTtGT5SkmSlaWlxo4a/sQ/T1sb
W8Ply8FXTW6/eu269h08pH0HDxHa8VB0evbB0fbJX0/X1WvXJUlFPYoYwnh2un3njhYvXa6RY8cb
2lo0bSxbWxteDAAAwf1p80y9uqpVvaokKS4uThMnf6nIyMh03fejz6coKipaklS6ZAkVK+qRdsdZ
Wqq4l5cKuLlly+N3cLA37HRkRFRUVLZsPzPbfthc8ueXlWXab1EnJ8d0LZddMvtaJbKxsVFeB4en
9rNmY2Oj9q1aSJLuRERozfqNWrnmwdHyDm1bPbRtr93wr2JjYw072iWLF+dbHACQa+SYGvehb75m
uPzX36t15tz5dN83NCxMy1f/o+aNn5Ek1ape1ewsM1ZWVnrtlV5qWLe2ypUtbRhYd+NmiI6fOqVv
Zs3R/oOHzW6jRZNG6v78c5KkiZO/1OkzZ/VMvbpq06KZ/Cv6ydvLU7fv3NGRYye0c+8+zfp+ntHM
GfZ2dvpo7LuSpLKlSxnax44apnv3onT95k19NHmKJKlhvTrq2La1JGnBoj9MSmkSValcUZ3atZF/
xQoqXbKEbtwM0eGjx/TDzwu0e98B1atVU00bNZAkTf12tkLDwgz37diutTq2bSNJ+m7eT9qyY2fK
O0Zj35VH4cKKjo7Wq4P+Z3Tbpx+8L/dCBXUh4JLGfvSpHPPl0/DBb6pNi2ZyzJdP/QYO1eZtO4zu
Y5cnj17p0U1VKlWUn285FXBzVWxsrE79d0Z//b1aCxb9oci7dzP9Xsrqa2VONf/K6ty+rcr7+qhs
qZKytrZWaGiYNm7Zql9+/0MHDh8xuc8rPbrpmXp177+Of2r1uvUmy/iUKW00pmPQyHcUFhZuslzD
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
r1+azp06Fn6e8tG0Gq973U23ZNLkKfmfk75XOJpdXFycnt27pWf3bvnuMUdl/oIFuefv9+X6P9yW
WbPLj7yXlJSkzfJhGcuWLcuoCkNoavTG1aqV1q3KT6b9aPq0lJWtflbPBQtWTAO5XtOVD3OZ9zXN
mDJv3rw1Wq9jhXMAmjZpkp23367G69arW/dr2bcAAMJ9LbX3brumtF69JMsvWLSaYR5f9PksJD27
d83OO2yfbbbsl8022Th165SPgW9Qv35O+M63s2W/zXPMST/KggULU1xcXLiK6KLFi1d7EaFVKSku
qdFyzSrMyz55ytSVLlOTLwA1sabbWVZhnP648RPyWIUx7Kv9sjB/fuGL09e1bwEAhPta5OAKJzU+
9tQzq72aZ3XefX9U3n1/VK676ZbUqVM7W26+efbcbZccvP++qVunTnr36J7vHXN0rhlycxYvXpzJ
U6ambZvWqVe3btZr2rRwNL4mlixZkkmTp6R92zbZoGWLlBQXr/Z5b9iyZeH2h5Mmr5XvxQfjJxRu
z5k7N5dffe2X3sZX3bcAAGujb/ysMp07dsiWfTcr/Pzgo4/XeN1+m22arfr1Ta/u3ao8tmjR4jw/
9OWc95v/zU/POLNw/ya9exVufz7LS5J06dRxlb/rtxdfkKFPPpyXnnioEOATPpyYpHxoSOfVrF9c
XJz+W/atEO5r55U/J06eUhj/3rF9+8KR8+qU1quXrfr1zVb9+qZzxw5f274FABDua5H112ua664c
VIjD514cmqGvvlbj9c/95S9yx5DB+eNN16VOndrVLvfsCy8VjoY3qjCDyhtvvV24fdhB+1e7freN
umS/vXZP0yZNMnvOnEydVj4G/533Vwzp+c4Rh67yufbfom9aNCs/Afe1N4et9uTR/5SlS5cWpsxs
0rhR4QJX1fn+8cfkjiGDc8eQwem/Rd+vbd8CAAj3tUBRUVH22WO33H3bTYUTSj/97LMMvOSyL7Wd
4e+8l6R8DPsO22xT7XK9e/YozJQy/L33Cvff9qe/FC5ytO+eu2fj3iu/oNHJ3zu+8OXiX8+/WLj/
1jvvyvwFC5IkB31r3/Ts3nWl6zds0CADTj2l8PPgIX9Yq9+fqwavmEf+Jz84sXD+wRe1bdM6Jx57
dJLyv3A89NiTX9u+TZIlFcbbN23c2P8tAADh/nXr3aN7rrzkwir/XXfFZfnnn2/Pq888lqsuvSjt
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
"
preserveAspectRatio="none"
height="90.411896"
width="61.254677" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#e51c20;fill-opacity:0.74117647;stroke:none;stroke-width:0.26458332"
x="38.257114"
y="92.108269"
id="text23"><tspan
sodipodi:role="line"
id="tspan21"
x="38.257114"
y="92.108269"
style="font-size:4.23333311px;fill:#e51c20;fill-opacity:0.74117647;stroke-width:0.26458332">Return to HOME</tspan></text>
<path
sodipodi:type="star"
style="fill:#f00308;fill-opacity:0.74117647;stroke-width:0.26458332"
id="path4500"
sodipodi:sides="3"
sodipodi:cx="36.14397"
sodipodi:cy="90.530502"
sodipodi:r1="2.1800292"
sodipodi:r2="1.0900145"
sodipodi:arg1="1.0471976"
sodipodi:arg2="2.0943951"
inkscape:flatsided="false"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 37.233985,92.418463 -1.635022,-0.94398 -1.635022,-0.943981 1.635022,-0.94398 1.635022,-0.94398 0,1.88796 z"
inkscape:transform-center-x="0.54500767" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

@ -0,0 +1,84 @@
# AutoConnect <small>for ESP8266</small>
An Arduino library for ESP8266 WLAN configuration at run time with web interface.
## Overview
To the dynamic configuration for joining to WLAN with SSID and PSK accordingly. It an Arduino library united with *ESP8266WebServer* class.
Easily implementing the Web interface constituting the WLAN for ESP8266 WiFi connection. With this library to make a sketch easily which connects from ESP8266 to the access point at runtime by the web interface without hard-coded SSID and password.
<img style="display:inline-block;width:460px;margin-right:30px;" src="/images/ov.png" /><span style="display:inline-block;width:182px;height:322px;border:solid 1px lightgrey;"><img data-gifffer="/images/ov.gif" data-gifffer-width="180" style="width:180px;" /></span>
### <i class="fa fa-arrow-circle-right" aria-hidden="true"></i> No need pre-coded SSID &amp; password
<span class="lead">It is no needed hard-coding in advance the SSID and Password into the sketch to connect between ESP8266 and WLAN. You can input SSID &amp; Password from a smartphone via the web interface at runtime.</span>
### <i class="fa fa-arrow-circle-right" aria-hidden="true"></i> Simple usage
<span class="lead">AutoConnect control screen will be displayed automatically for establishing new connections. It aids by the <a href="https://en.wikipedia.org/wiki/Captive_portal">captive portal</a> when vested the connection cannot be detected.<br>By using the [AutoConnect menu](menu.md), to manage the connections convenient.</span>
### <i class="fa fa-arrow-circle-right" aria-hidden="true"></i> Store the established connection
<span class="lead">The connection authentication data as credentials are saved automatically in EEPROM of ESP8266 and You can select the past SSID from the [AutoConnect menu](menu.md).</span>
### <i class="fa fa-arrow-circle-right" aria-hidden="true"></i> Easy to embed in
<span class="lead">AutoConnect can be embedded easily into your sketch, just "**begin**" and "**handleClient**".</span>
### <i class="fa fa-arrow-circle-right" aria-hidden="true"></i> Lives with the your sketches
<span class="lead">The sketches which provide the web page using ESP8266WebServer there is, AutoConnect will not disturb it. AutoConnect can use an already instantiated ESP8266WebServer object, or itself can assign it.</span>
## Installation
### Requirements
#### Supported hardware
* [X] Generic ESP8266 modules (applying the ESP8266 Community's Arduino core)
* [X] Adafruit HUZZAH ESP8266 (ESP-12)
* [X] ESP-WROOM-02
* [X] Heltec WiFi Kit 8
* [X] NodeMCU 0.9 (ESP-12) / NodeMCU 1.0 (ESP-12E)
* [X] Olimex MOD-WIFI-ESP8266
* [X] SparkFun Thing
* [X] SweetPea ESP-210
!!! info "About flash size on the module"
The AutoConnect sketch size is relatively large. Large flash capacity is necessary. 512Kbyte (4Mbits) flash inclusion module such as ESP-01 is not recommended.
#### Required libraries
AutoConnect requires the following environment and libraries.
<i class="fa fa-download"></i> <strong>Arduino IDE</strong>
The current upstream at the 1.8 level or later is needed. Please install from the [official Arduino IDE download page](https://www.arduino.cc/en/Main/Software). This step is not required if you already have a modern version.
<i class="fa fa-download"></i> <strong>ESP8266 Arduino core</strong>
AutoConnect targets sketches made on the assumption of [ESP8266 Community's Arduino core](https://github.com/esp8266/Arduino). The [latest release](https://github.com/esp8266/Arduino/releases/latest) is recommended.
Install third-party platform using the *Boards Manager* of Arduino IDE. Package URL is http://arduino.esp8266.com/stable/package_esp8266com_index.json
<i class="fa fa-download"></i> <strong>Additional necessary library</strong>
The [PageBuilder](https://github.com/Hieromon/PageBuilder) library to build HTML for ESP8266WebServer is needed.
To install the PageBuilder library into your Arduino IDE, you can use the *Library Manager*. Select the board of ESP8266 series in the Arduino IDE, open the library manager and search keyword '**pagebuilder**' in the topic '**Communication**', then you can see the *PageBuilder*. The latest version or 1.0.0 later is required.
<img src="/images/lm.png" width="640"/>
### Install the AutoConnect
Clone or download from the [AutoConnect GitHub repository](https://github.com/Hieromon/AutoConnect).
<img src="/images/gitrepo.png" width="640"/>
When you select Download, you can import it to Arduino IDE immediately. After downloaded, the AutoConnect-master.zip file will be saved in your download folder. Then in the Arduino IDE, navigate to *"Sketch > Include Library"*. At the top of the drop down list, select the option to *"Add .ZIP Library..."*. Details for [Arduino official page](https://www.arduino.cc/en/Guide/Libraries#toc4).
<img src="/images/ins_lib.png" />
<script>
window.onload = function() {
Gifffer();
}
</script>

@ -0,0 +1 @@
(function webpackUniversalModuleDefinition(root,factory){if(typeof exports==="object"&&typeof module==="object")module.exports=factory();else if(typeof define==="function"&&define.amd)define("Gifffer",[],factory);else if(typeof exports==="object")exports["Gifffer"]=factory();else root["Gifffer"]=factory()})(this,function(){var d=document;var playSize=60;var Gifffer=function(options){var images,i=0,gifs=[];images=d.querySelectorAll("[data-gifffer]");for(;i<images.length;++i)process(images[i],gifs,options);return gifs};function formatUnit(v){return v+(v.toString().indexOf("%")>0?"":"px")}function parseStyles(styles){var stylesStr="";for(prop in styles)stylesStr+=prop+":"+styles[prop]+";";return stylesStr}function createContainer(w,h,el,altText,opts){var alt;var con=d.createElement("BUTTON");var cls=el.getAttribute("class");var id=el.getAttribute("id");var playButtonStyles=opts&&opts.playButtonStyles?parseStyles(opts.playButtonStyles):["width:"+playSize+"px","height:"+playSize+"px","border-radius:"+playSize/2+"px","background:rgba(0, 0, 0, 0.3)","position:absolute","top:50%","left:50%","margin:-"+playSize/2+"px"].join(";");var playButtonIconStyles=opts&&opts.playButtonIconStyles?parseStyles(opts.playButtonIconStyles):["width: 0","height: 0","border-top: 14px solid transparent","border-bottom: 14px solid transparent","border-left: 14px solid rgba(0, 0, 0, 0.5)","position: absolute","left: 26px","top: 16px"].join(";");cls?con.setAttribute("class",el.getAttribute("class")):null;id?con.setAttribute("id",el.getAttribute("id")):null;con.setAttribute("style","position:relative;cursor:pointer;background:none;border:none;padding:0;");con.setAttribute("aria-hidden","true");var play=d.createElement("DIV");play.setAttribute("class","gifffer-play-button");play.setAttribute("style",playButtonStyles);var trngl=d.createElement("DIV");trngl.setAttribute("style",playButtonIconStyles);play.appendChild(trngl);if(altText){alt=d.createElement("p");alt.setAttribute("class","gifffer-alt");alt.setAttribute("style","border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;width:1px;");alt.innerText=altText+", image"}con.appendChild(play);el.parentNode.replaceChild(con,el);altText?con.parentNode.insertBefore(alt,con.nextSibling):null;return{c:con,p:play}}function calculatePercentageDim(el,w,h,wOrig,hOrig){var parentDimW=el.parentNode.offsetWidth;var parentDimH=el.parentNode.offsetHeight;var ratio=wOrig/hOrig;if(w.toString().indexOf("%")>0){w=parseInt(w.toString().replace("%",""));w=w/100*parentDimW;h=w/ratio}else if(h.toString().indexOf("%")>0){h=parseInt(h.toString().replace("%",""));h=h/100*parentDimW;w=h*ratio}return{w:w,h:h}}function process(el,gifs,options){var url,con,c,w,h,duration,play,gif,playing=false,cc,isC,durationTimeout,dims,altText;url=el.getAttribute("data-gifffer");w=el.getAttribute("data-gifffer-width");h=el.getAttribute("data-gifffer-height");duration=el.getAttribute("data-gifffer-duration");altText=el.getAttribute("data-gifffer-alt");el.style.display="block";c=document.createElement("canvas");isC=!!(c.getContext&&c.getContext("2d"));if(w&&h&&isC)cc=createContainer(w,h,el,altText,options);el.onload=function(){if(!isC)return;w=w||el.width;h=h||el.height;if(!cc)cc=createContainer(w,h,el,altText,options);con=cc.c;play=cc.p;dims=calculatePercentageDim(con,w,h,el.width,el.height);gifs.push(con);con.addEventListener("click",function(){clearTimeout(durationTimeout);if(!playing){playing=true;gif=document.createElement("IMG");gif.setAttribute("style","width:100%;height:100%;");gif.setAttribute("data-uri",Math.floor(Math.random()*1e5)+1);setTimeout(function(){gif.src=url},0);con.removeChild(play);con.removeChild(c);con.appendChild(gif);if(parseInt(duration)>0){durationTimeout=setTimeout(function(){playing=false;con.appendChild(play);con.removeChild(gif);con.appendChild(c);gif=null},duration)}}else{playing=false;con.appendChild(play);con.removeChild(gif);con.appendChild(c);gif=null}});c.width=dims.w;c.height=dims.h;c.getContext("2d").drawImage(el,0,0,dims.w,dims.h);con.appendChild(c);con.setAttribute("style","position:relative;cursor:pointer;width:"+dims.w+"px;height:"+dims.h+"px;background:none;border:none;padding:0;");c.style.width="100%";c.style.height="100%";if(w.toString().indexOf("%")>0&&h.toString().indexOf("%")>0){con.style.width=w;con.style.height=h}else if(w.toString().indexOf("%")>0){con.style.width=w;con.style.height="inherit"}else if(h.toString().indexOf("%")>0){con.style.width="inherit";con.style.height=h}else{con.style.width=dims.w+"px";con.style.height=dims.h+"px"}};el.src=url}return Gifffer});

@ -0,0 +1,15 @@
**MIT License**
Copyright &copy; 2018 Hieromon Ikasamo
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
**Acknowledgments**
The **Luxbar** is licensed under the MIT License.
https://github.com/balzss/luxbar

@ -0,0 +1,52 @@
!!! info "Luxbar"
The AutoConnect menu is developed using the [LuxBar](https://github.com/balzss/luxbar) which is licensed under the MIT License. See the [License](license.md).
## <i class="fa fa-external-link"></i> Where the from
The AutoConnect menu appears when you access the **AutoConnect root path**. It is assigned to "**/_ac**" located on ESP8266 *local IP address* by default. This location can be changed in the sketch. The following screen will appear at access to `http://{localIP}/_ac` as the root path. This is the statistics of the current WiFi connection. You can access the menu from the here. (e.g. `http://192.168.244.1/_ac` for SoftAP mode.)
To invoke the menu tap <i class="fa fa-bars"></i> at right on top.
<img src="/images/_ac.png" style="border-style:solid;border-width:1px;border-color:lightgrey;width:280px;" />
!!! note "What's local IP?"
A local IP means Local IP at connection established or SoftAP's IP.
## <i class="fa fa-bars"></i> Right on top
Currently, AutoConnect supports four menus. Undermost menu returns to home path of its sketch.
- **Configure new AP** : Configure SSID and Password for new access point.
- **Open SSIDs** : Opens the past SSID which has been established connection from EEPROM.
- **Disconnect** : Disconnects current connection.
- **Reset...** : Rest the ESP8266 module.
- **HOME** : Return to user home page.
<img src="/images/menu.png" style="width:280px;" />
## <i class="fa fa-bars"></i> Configure new AP
Scan all available access point and display it. Strength and security of the detected AP are marked. The <i class="fa fa-lock"></i> is indicated for the SSID that needs a security key. "**Hidden:**" means the number of hidden SSIDs discovered.
Enter SSID and Passphrase and tap "**apply**" to try connection.
<img src="/images/newap.png" style="border-style:solid;border-width:1px;border-color:lightgrey;width:280px;" />
## <i class="fa fa-bars"></i> Open SSIDs
Once it was established connection, its SSID and Password will be stored to the EEPROM of ESP8266 automatically. The **Open SSIDs** menu reads the saved SSID credentials from the EEPROM. The stored credential data are listed by the SSID as shown below. Its label is a clickable button. To tap the SSID button starts connection it.
<img src="/images/open.png" style="border-style:solid;border-width:1px;border-color:lightgrey;width:280px;" />
## <i class="fa fa-bars"></i> Disconnect
Disconnect ESP8266 from the current connection. After the menu tapped, AutoConnect menu cannot be accessed. Once disconnected, you will need to set the SSID again to connect to the WLAN.
It can also reset the ESP8266 automatically after being disconnected from the [API](api.md#autoreset) used in the sketch.
## <i class="fa fa-bars"></i> Reset...
Reset the ESP8266, it will be rebooted. After rebooting complete, the ESP8266 begins establishing the previous connection by WIFI_STA mode and the *esp8266ap* as SoftAP disappears from the WLAN.
<img src="/images/resetting.png" style="width:280px;" />
!!! warning "Not every module will be rebooted normally"
The Reset menu is using the **ESP.reset()** function. This is an almost hardware reset. In order to resume the sketch normally, the [state of GPIO0](https://github.com/esp8266/esp8266-wiki/wiki/Boot-Process#esp-boot-modes) is important. Since this depends on the circuit implementation for each module, not every module will be rebooted normally. See also [FAQ](faq.md#hang-up-after-reset).

@ -0,0 +1,282 @@
## Simple usage
### <i class="fa fa-edit"></i> Embed to the sketches
How embed the AutoConnect to the sketches you have. Most simple approach to applying AutoConnect for the existing sketches, follow the below steps.
<img src="/images/BeforeAfter.svg" />
<i class="fa fa-edit"></i> Insert `#include <AutoConnect.h>` to behind of `#include <ESP8266WebServer.h>`.
<i class="fa fa-edit"></i> Insert `AutoConnect`*`PORTAL(WEBSERVER);`* to behind of `ESP8266WebServer`*`WEBSERVER;`* declaration.[^1]
<i class="fa fa-edit"></i> Remove `WiFi.begin(`*`SSID`*`,`*`PSK`*`)` and the subsequent logic for the connection status check.
<i class="fa fa-edit"></i> Replace *`WEBSERVER`*`.begin()` to *`PORTAL`*`.begin()`.[^2]
<i class="fa fa-edit"></i> Replace *`WEBSERVER`*`.handleClient()` to *`PORTAL`*`.handleClient()`.[^3]
<i class="fa fa-edit"></i> If the connection successful logic is needed, you can check the return value as `true` or `false` of *`PORTAL`*`.begin()`.
[^1]:
Each *VARIABLE* conforms to the actual declaration in the sketches.
[^2]:
WiFi SSID and Password can be specified AutoConnect::begin() too.
[^3]:
Replacement the **handleClient** method is not indispensable. AutoConnect can still connect with the captive portal as it is ESP8266WebServer::handleClient. But it can **not valid AutoConnect menu**.
## Basic usage
### <i class="fa fa-caret-right"></i> Basic logic sequence for the user sketches
#### 1. A typical logic sequence
!!! note ""
1. <strong>Include headers,</strong> `ESP8266WebServer.h` and `AutoConnect.h`
2. <strong>Declare ESP8266WebServer variable.</strong>
3. <strong>Declare AutoConnect variable.</strong>
4. <strong>Implements the URL handler *function()*.</strong>
5. <strong>setup()</strong>
5.1 <strong>Sets URL handler *function()* to ESP8266WebServer by</strong>`ESP8266WebServer::on`<strong>.</strong>
5.2 <strong>Starts </strong>`AutoConnect::begin()`<strong>.</strong>
5.3 <strong>Check connection status.</strong>
6. <strong>loop()</strong>
6.1 <strong>Invokes </strong>`AutoConnect::handleClient()`<strong>,<br>or invokes </strong>`ESP8266WebServer::handleClient()`<strong> then </strong>`AutoConnect::handleRequest()`<strong>.</strong>
6.2 <strong>Do the process for actual sketch.</strong>
#### 2. Declare AutoConnect object
[Two options](#esp8266webserver-hosted-or-parasitic) are available for [AutoConnect constructor](api.md#constructors).
```arduino
AutoConnect VARIABLE(&ESP8266WebServer);
```
or
```arduino
AutoConnect VARIABLE;
```
- **Parameter with ESP8266WebServer variable:** An ESP8266WebServer object variable must be declared in the sketch. AutoConnect uses its variable for handling the AutoConnect menu.
- **With no parameter:** The sketch does not declare ESP8266WebServer object. In this case, AutoConnect allocates an instance of the ESP8266WebServer internally and the logic sequence of the sketch is somewhat different as the above. To register a URL handler function by *ESP8266WebServer::on* should be performed after [*AutoConnect::begin*](api.md#begin).
#### 3. No need WiFI.begin(...)
AutoConnect performs *WiFi.begin* for establishing a connection with WLAN internally. There is no need for a general process to establish a connection with *WiFi.begin* in a sketch.
#### 4. Alternate ESP8266WebServer::begin()
[*AutoConnect::begin*](api.md#begin) internally executes *ESP8266WebServer::begin* too and it starts DNS server to behave as a captive portal. So the sketch does not need to call *ESP8266WebServer::begin*.
!!! info "Why DNS Server Starts"
AutoConnect traps the detection of captive portals and directs them to the AutoConnect menu to achieve a connection with the WLAN interactively. In order to trap, it temporarily responds SoftAP address to all DNS queries. When the connection with the WLAN is successfully established, the DNS server will stop.
#### 5. AutoConnect::begin with SSID and Password
SSID and Password can also specify by [AutoConnect::begin](api.me#begin). ESP8266 uses provided SSID and Password explicitly. If the connection false with specified SSID with Password then a captive portal is activated. SSID and Password are not present, ESP8266 SDK will attempt to connect using the still effectual SSID and password. Usually, it succeeds.
#### 6. Use ESP8266WebServer::on to handle URL
AutoConnect is designed to coexist with the process for handling the web pages by user sketches. The page processing function which will send an HTML to the client invoked by the "**on**" function is the same as when using ESP8266WebServer natively.
#### 7. Use either ESP8266WebServer::handleClient() or AutoConnect::handleClient()
Both classes member function name is the same: *handleClient*, but behavior is different. Using the AutoConnect embedded along with ESP8266WebServer::handleClient has limitations. Refer to the below section for details.
### <i class="fa fa-caret-right"></i> ESP8266WebServer hosted or parasitic
The interoperable process with an ESP8266WebServer depends on the parameters of the [AutoConnect constructor](api.md#constructors).
Declaration parameter | Use ESP8266WebServer::handleClient | Use AutoConnect::handleClient
----|----|---
None | AutoConnect menu not available.<br>host() is needed. | AutoConnect menu available.<br>host() is needed.
Reference to ESP8266WebServer | AutoConnect menu not available.<br>host() not necessary. | AutoConnect menu available.<br>host() not necessary.
- **By declaration for the AutoConnect variable with no parameter**: The ESP8266WebServer instance is hosted by AutoConnect automatically then the sketches use [*AutoConnect::host*](api.md#host) as API to get it after [*AutoConnect::begin*](api.md#begin) performed.
- **By declaration for the AutoConnect variable with the reference of ESP8266WebServer**: AutoConnect will use it. The sketch can use it is too.
- **In use ESP8266WebServer::handleClient()**: AutoConnect menu can be dispatched but not works normally. It is necessary to call [*AutoConnect::handleRequest*](api.md#void-handlerequest) after *ESP8255WebServer::handleClient* invoking.
- **In use [AutoConnect::handleClient()](api.md#void-handleclient)**: The handleClient() process and the AutoConnect menu is available without calling *ESP8266WebServer::handleClient*.
!!! info "Why AutoConnect::handleRequest is needed when using ESP8266::handleClient"
The AutoConnect menu function may affect WiFi connection state. It follows that the menu process must execute outside *ESP8266WebServer::handleClient*.
[*AutoConnect::handleClient*](api.md#void-handleclient) is equivalent *ESP8266WebServer::handleClient* included [*AutoConnect::handleRequest*](api.md#void-handlerequest).
## Advanced usage
### <i class="fa fa-caret-right"></i> 404 handler
Registering the "not found" handler is a different way than ESP8266. The *onNotFound* of ESP8266WebServer does not work with AutoConnect. AutoConnect overrides *ESP8266WebServer::onNotFound* to handle a captive portal. To register "not found" handler, use [*AutoConnect::onNotFound*](api.md#onnotfound).
### <i class="fa fa-caret-right"></i> Captive portal start detection
The captive portal will only be activated if the first *WiFi::begin* fails. Sketch can detect with the [*onDetect*](api.md#ondetect) funciton that the captive portal has started. For example, the sketch can be written like as follows that turns on the LED at the start captive portal.
```arduino hl_lines="3 13"
AutoConnect Portal;
bool startCP(IPAddress ip) {
digitalWrite(BUILTIN_LED, HIGH);
Serial.println("C.P. started, IP:" + WiFi.localIP().toString());
return true;
}
void setup() {
Serial.begin(115200);
pinMode(BUILTIN_LED, output);
digitalWrite(BUILTIN_LED, LOW);
Portal.onDetect(startCP);
if (Portal.begin()) {
digitalWrite(BUILTIN_LED, LOW);
}
}
void loop() {
Portal.handleClient();
}
```
### <i class="fa fa-caret-right"></i> Combination with mDNS
With [mDNS library](https://github.com/esp8266/Arduino/tree/master/libraries/ESP8266mDNS), you can access to ESP8266 by name instead of IP address after connection. The sketch can start the MDNS responder after AutoConnect::begin.
```arduino hl_lines="8 9"
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <ESP8266WebServer.h>
AutoConnect Portal;
void setup() {
if (Portal.begin()) {
if (MDNS.begin("esp8266")) {
MDNS.addService("http", "tcp", 80);
}
}
}
void loop() {
Portal.handleClient();
}
```
### <i class="fa fa-caret-right"></i> Credential data
By default, AutoConnect saves the credentials of the established connection in EEPROM. You can disable it with the **autoSave** parameter specified by [*AutoConnect::config*](api.md#config).
```arduino hl_lines="3"
AutoConnect Portal;
AutoConnectConfig Config;
Config.autoSave = AC_SAVECREDENTIAL_NEVER;
Portal.config(Config);
Portal.begin();
```
!!! note "AutoConnect::config before AutoConnect::begin"
*AutoConnect::config* must be executed before *AutoConnect::begin*.
### <i class="fa fa-caret-right"></i> Debug print
You can output AutoConnect monitor messages to the **Serial**. A monitor message activation switch is in an include header file [*AutoConnect.h*](https://github.com/Hieromon/AutoConnect/blob/master/src/AutoConnect.h) of library source. Define **AC_DEBUG** macro to output monitor messages.
```cpp
#define AC_DEBUG
```
### <i class="fa fa-caret-right"></i> Refers the hosted ESP8266WebServer
Constructing an AutoConnect object variable without parameters then creates and starts an ESP8266WebServer inside the AutoConnect. This object variable could be referred by [*AutoConnect::host()*](api.md#host) function to access ESP8266WebServer instance as like below.
```arduino hl_lines="4"
AutoConnect Portal;
Portal.begin();
ESP8266WebServer& server = Portal.host();
server.send(200, "text/plain", "Hello, world");
```
!!! info "When host() is valid"
The host() can be referred at after *AutoConnect::begin*.
### <i class="fa fa-caret-right"></i> Usage for automatically instantiated ESP8266WebServer
The sketch can handle URL requests using ESP8266WebServer that AutoConnect started internally. ESP8266WebServer instantiated dynamically by AutoConnect can be referred to by [*AutoConnect::host*](api.md#host) function. The sketch can use the '**on**' function, '**send**' function, '**client**' function and others by ESP8266WebServer reference of its return value.
```arduino hl_lines="8 9 13 14 20 21 27"
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <AutoConnect.h>
AutoConnect Portal;
void handleRoot() {
ESP8266WebServer& IntServer = Portal.host();
IntServer.send(200, "text/html", "Hello, world");
}
void handleNotFound() {
ESP8266WebServer& IntServer = Portal.host();
IntServer.send(404, "text/html", "Unknown.");
}
void setup() {
bool r = Portal.begin();
if (r) {
ESP8266WebServer& IntServer = Portal.host();
IntServer.on("/", handleRoot);
Portal.onNotFound(handleNotFound); // For only onNotFound.
}
}
void loop() {
Portal.host().handleClient();
Portal.handleRequest();
/* or following one line code is equ.
Portal.handleClient();
*/
}
```
!!! note "ESP8266WebServer function should be called after AutoConnect::begin"
The sketch cannot refer to an instance of ESP8266WebServer until AutoConnect::begin completes successfully.
!!! warning "Do not use with ESP8266WebServer::begin"
ESP8266WebServer is already running inside the AutoConnect.
### <i class="fa fa-caret-right"></i> Use with the [PageBuilder](https://github.com/Hieromon/PageBuilder) library
In ordinary, the URL handler will respond the request by sending some HTML. [PageBuilder](https://github.com/Hieromon/PageBuilder) library is HTML assembly aid. it can handle predefined HTML as like a template and simplify an HTML string assemble logic, and also the generated HTML send automatically.
An example sketch used with the PageBuilder as follows and it explains how it aids for the HTML generating. Details for [Github repository](https://github.com/Hieromon/PageBuilder).
<img src="/images/PageBuilder.png" style="width:640px;"/>
## Configuration functions
### <i class="fa fa-caret-right"></i> Configuration for Soft AP
AutoConnect will activate SoftAP at failed initial WiFi.Begin. It SoftAP settings are stored in [*AutoConnectConfig*](api.md#autoconnectconfig-api) as the following parameters. The sketch could be configured SoftAP using these parameters, refer [AutoConnectConfig API](api.md#autoconnectconfig-api) for details.
- IP address of SoftAP activated.
- Gateway IP address.
- Subnet mask.
- SSID for SoftAP.
- Password for SoftAP.
- Channel.
- Hidden attribute.
- Auto save credential.
- Auto reset after connection establishment.
- Home URL of the user sketch application.
### <i class="fa fa-caret-right"></i> Assign user sketch's home path
"**HOME**" for returning to the user's sketch homepage is displayed at the bottom of the AutoConnect menu. It could be set using the [*AutoConnect::home*](api.md#home) function.
<img src="/images/menu_home.png" />
### <i class="fa fa-caret-right"></i> 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** macro in the include header file as [AutoConnect.h](https://github.com/Hieromon/AutoConnect/blob/master/src/AutoConnect.h).
```cpp
#define AUTOCONNECT_URI "/_ac"
```

@ -0,0 +1,144 @@
/**
* AutoConnect for ESP8266.
* https://github.com/Hieromon/AutoConnect
* Copyright 2018, Hieromon Ikasamo.
* Licensed under The MIT License.
* https://opensource.org/licenses/mit-license.php
* An example sketch for an Arduino library for ESP8266 WLAN configuration
* via the Web interface. This sketch provides a conservation measures
* utility for saved credentials in EEPROM.
* By accessing the root path, you can see the list of currently saved
* credentials via the browser. Enter an entry number of the credential,
* that entry will be deleted from EEPROM.
* This sketch uses PageBuilder to support handling of operation pages.
*/
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <AutoConnect.h>
#include <AutoConnectCredentail.h>
#include <PageBuilder.h>
ESP8266WebServer Server;
AutoConnect Portal(Server);
String viewCredential(PageArgument&);
String delCredential(PageArgument&);
/**
* An HTML for the operation page.
* In PageBuilder, the token {{SSID}} contained in an HTML template below is
* replaced by the actual SSID due to the action of the token handler's
* 'viewCredential' function.
* The number of the entry to be deleted is passed to the function in the
* POST method.
*/
static const char html[] PROGMEM = {
"<!DOCTYPE html>"
"<html>"
"<head>"
"<meta charset=\"UTF-8\" name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
"<style>"
"html {"
"font-family:Helvetica,Arial,sans-serif;"
"-ms-text-size-adjust:100%;"
"-webkit-text-size-adjust:100%;"
"}"
"a:link, a:visited {"
"background-color: #2f4f4f;"
"border-radius: 4px;"
"color: white;"
"display: inline-block;"
"padding: 6px 12px;"
"text-align: center;"
"text-decoration: none;"
"}"
"a:hover, a:active {"
"background-color: #132020;"
"}"
"</style>"
"</head>"
"<body>"
"<form action=\"/del\" method=\"POST\">"
"<ol>"
"{{SSID}}"
"</ol>"
"<p>Enter deleting entry:</p>"
"<input type=\"number\" min=\"1\" name=\"num\">"
"<input type=\"submit\">"
"</form>"
"<p><a href=\"" AUTOCONNECT_URI "\">Menu</a></p>"
"</body>"
"</html>"
};
// URL path as '/'
PageElement elmList(html, {{ "SSID", viewCredential }});
PageBuilder rootPage("/", { elmList });
// URL path as '/del'
PageElement elmDel("{{DEL}}", {{ "DEL", delCredential }});
PageBuilder delPage("/del", { elmDel });
// Retrieve the credential entries from EEPROM, Build the SSID line
// with the <li> tag.
String viewCredential(PageArgument& args) {
AutoConnectCredential ac;
struct station_config entry;
String content = "";
uint8_t count = ac.entries(); // Get number of entries.
for (int8_t i = 0; i < count; i++) { // Loads all entries.
ac.load(i, &entry);
// Build a SSID line of an HTML.
content += String("<li>") + String((char *)entry.ssid) + String("</li>");
}
// Returns the '<li>SSID</li>' container.
return content;
}
// Delete a credential entry, the entry to be deleted is passed in the
// request parameter 'num'.
String delCredential(PageArgument& args) {
AutoConnectCredential ac;
if (args.hasArg("num")) {
int8_t e = args.arg("num").toInt();
if (e > 0) {
struct station_config entry;
// If the input number is valid, delete that entry.
int8_t de = ac.load(e, &entry);
if (de > 0) {
ac.del((char *)entry.ssid);
// Returns the redirect response. The page is reloaded and its contents
// are updated to the state after deletion. It returns 302 response
// from inside this token handler.
Server.sendHeader("Location", String("http://") + Server.client().localIP().toString() + String("/"));
Server.send(302, "text/plain", "");
Server.client().flush();
Server.client().stop();
// Cancel automatic submission by PageBuilder.
delPage.cancel();
}
}
}
return "";
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
rootPage.insert(Server); // Instead of Server.on("/", ...);
delPage.insert(Server); // Instead of Server.on("/del", ...);
if (Portal.begin()) {
Serial.println("WiFi connected: " + WiFi.localIP().toString());
}
}
void loop() {
Portal.handleClient();
}

@ -0,0 +1,251 @@
/*
FSWebServer - Example WebServer with SPIFFS backend for esp8266
Copyright (c) 2015 Hristo Gochkov. All rights reserved.
This file is part of the ESP8266WebServer library for Arduino environment.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
upload the contents of the data folder with MkSPIFFS Tool ("ESP8266 Sketch Data Upload" in Tools menu in Arduino IDE)
or you can upload the contents of a folder if you CD in that folder and run the following command:
for file in `ls -A1`; do curl -F "file=@$PWD/$file" esp8266fs.local/edit; done
access the sample web page at http://esp8266fs.local
edit the page by going to http://esp8266fs.local/edit
*/
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <FS.h>
//Add a below line for AutoConnect.
#include <AutoConnect.h>
#define DBG_OUTPUT_PORT Serial
const char* ssid = "wifi-ssid";
const char* password = "wifi-password";
const char* host = "esp8266fs";
ESP8266WebServer server(80);
//Add a below line for AutoConnect.
AutoConnect portal(server);
//holds the current upload
File fsUploadFile;
//format bytes
String formatBytes(size_t bytes){
if (bytes < 1024){
return String(bytes)+"B";
} else if(bytes < (1024 * 1024)){
return String(bytes/1024.0)+"KB";
} else if(bytes < (1024 * 1024 * 1024)){
return String(bytes/1024.0/1024.0)+"MB";
} else {
return String(bytes/1024.0/1024.0/1024.0)+"GB";
}
}
String getContentType(String filename){
if(server.hasArg("download")) return "application/octet-stream";
else if(filename.endsWith(".htm")) return "text/html";
else if(filename.endsWith(".html")) return "text/html";
else if(filename.endsWith(".css")) return "text/css";
else if(filename.endsWith(".js")) return "application/javascript";
else if(filename.endsWith(".png")) return "image/png";
else if(filename.endsWith(".gif")) return "image/gif";
else if(filename.endsWith(".jpg")) return "image/jpeg";
else if(filename.endsWith(".ico")) return "image/x-icon";
else if(filename.endsWith(".xml")) return "text/xml";
else if(filename.endsWith(".pdf")) return "application/x-pdf";
else if(filename.endsWith(".zip")) return "application/x-zip";
else if(filename.endsWith(".gz")) return "application/x-gzip";
return "text/plain";
}
bool handleFileRead(String path){
DBG_OUTPUT_PORT.println("handleFileRead: " + path);
if(path.endsWith("/")) path += "index.htm";
String contentType = getContentType(path);
String pathWithGz = path + ".gz";
if(SPIFFS.exists(pathWithGz) || SPIFFS.exists(path)){
if(SPIFFS.exists(pathWithGz))
path += ".gz";
File file = SPIFFS.open(path, "r");
size_t sent = server.streamFile(file, contentType);
file.close();
return true;
}
return false;
}
void handleFileUpload(){
if(server.uri() != "/edit") return;
HTTPUpload& upload = server.upload();
if(upload.status == UPLOAD_FILE_START){
String filename = upload.filename;
if(!filename.startsWith("/")) filename = "/"+filename;
DBG_OUTPUT_PORT.print("handleFileUpload Name: "); DBG_OUTPUT_PORT.println(filename);
fsUploadFile = SPIFFS.open(filename, "w");
filename = String();
} else if(upload.status == UPLOAD_FILE_WRITE){
//DBG_OUTPUT_PORT.print("handleFileUpload Data: "); DBG_OUTPUT_PORT.println(upload.currentSize);
if(fsUploadFile)
fsUploadFile.write(upload.buf, upload.currentSize);
} else if(upload.status == UPLOAD_FILE_END){
if(fsUploadFile)
fsUploadFile.close();
DBG_OUTPUT_PORT.print("handleFileUpload Size: "); DBG_OUTPUT_PORT.println(upload.totalSize);
}
}
void handleFileDelete(){
if(server.args() == 0) return server.send(500, "text/plain", "BAD ARGS");
String path = server.arg(0);
DBG_OUTPUT_PORT.println("handleFileDelete: " + path);
if(path == "/")
return server.send(500, "text/plain", "BAD PATH");
if(!SPIFFS.exists(path))
return server.send(404, "text/plain", "FileNotFound");
SPIFFS.remove(path);
server.send(200, "text/plain", "");
path = String();
}
void handleFileCreate(){
if(server.args() == 0)
return server.send(500, "text/plain", "BAD ARGS");
String path = server.arg(0);
DBG_OUTPUT_PORT.println("handleFileCreate: " + path);
if(path == "/")
return server.send(500, "text/plain", "BAD PATH");
if(SPIFFS.exists(path))
return server.send(500, "text/plain", "FILE EXISTS");
File file = SPIFFS.open(path, "w");
if(file)
file.close();
else
return server.send(500, "text/plain", "CREATE FAILED");
server.send(200, "text/plain", "");
path = String();
}
void handleFileList() {
if(!server.hasArg("dir")) {server.send(500, "text/plain", "BAD ARGS"); return;}
String path = server.arg("dir");
DBG_OUTPUT_PORT.println("handleFileList: " + path);
Dir dir = SPIFFS.openDir(path);
path = String();
String output = "[";
while(dir.next()){
File entry = dir.openFile("r");
if (output != "[") output += ',';
bool isDir = false;
output += "{\"type\":\"";
output += (isDir)?"dir":"file";
output += "\",\"name\":\"";
output += String(entry.name()).substring(1);
output += "\"}";
entry.close();
}
output += "]";
server.send(200, "text/json", output);
}
void setup(void){
DBG_OUTPUT_PORT.begin(115200);
DBG_OUTPUT_PORT.print("\n");
DBG_OUTPUT_PORT.setDebugOutput(true);
SPIFFS.begin();
{
Dir dir = SPIFFS.openDir("/");
while (dir.next()) {
String fileName = dir.fileName();
size_t fileSize = dir.fileSize();
DBG_OUTPUT_PORT.printf("FS File: %s, size: %s\n", fileName.c_str(), formatBytes(fileSize).c_str());
}
DBG_OUTPUT_PORT.printf("\n");
}
//WIFI INIT
DBG_OUTPUT_PORT.printf("Connecting to %s\n", ssid);
//Comment out as follows to make AutoConnect recognition.
//if (String(WiFi.SSID()) != String(ssid)) {
// WiFi.mode(WIFI_STA);
// WiFi.begin(ssid, password);
//}
//while (WiFi.status() != WL_CONNECTED) {
// delay(500);
// DBG_OUTPUT_PORT.print(".");
//}
//SERVER INIT
//list directory
server.on("/list", HTTP_GET, handleFileList);
//load editor
server.on("/edit", HTTP_GET, [](){
if(!handleFileRead("/edit.htm")) server.send(404, "text/plain", "FileNotFound");
});
//create file
server.on("/edit", HTTP_PUT, handleFileCreate);
//delete file
server.on("/edit", HTTP_DELETE, handleFileDelete);
//first callback is called after the request has ended with all parsed arguments
//second callback handles file uploads at that location
server.on("/edit", HTTP_POST, [](){ server.send(200, "text/plain", ""); }, handleFileUpload);
//called when the url is not defined here
//use it to load content from SPIFFS
//Replacement as follows to make AutoConnect recognition.
//server.onNotFound([](){
portal.onNotFound([](){
if(!handleFileRead(server.uri()))
server.send(404, "text/plain", "FileNotFound");
});
//get heap status, analog input value and all GPIO statuses in one json call
server.on("/all", HTTP_GET, [](){
String json = "{";
json += "\"heap\":"+String(ESP.getFreeHeap());
json += ", \"analog\":"+String(analogRead(A0));
json += ", \"gpio\":"+String((uint32_t)(((GPI | GPO) & 0xFFFF) | ((GP16I & 0x01) << 16)));
json += "}";
server.send(200, "text/json", json);
json = String();
});
//Replacement as follows to make AutoConnect recognition.
//server.begin();
portal.begin();
DBG_OUTPUT_PORT.println("HTTP server started");
//Relocation as follows to make AutoConnect recognition.
DBG_OUTPUT_PORT.println("");
DBG_OUTPUT_PORT.print("Connected! IP address: ");
DBG_OUTPUT_PORT.println(WiFi.localIP());
//Relocation as follows to make AutoConnect recognition.
MDNS.begin(host);
DBG_OUTPUT_PORT.print("Open http://");
DBG_OUTPUT_PORT.print(host);
DBG_OUTPUT_PORT.println(".local/edit to see the file browser");
}
void loop(void){
//Replacement as follows to make AutoConnect recognition.
//server.handleClient();
portal.handleClient();
}

@ -0,0 +1,502 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1,98 @@
<!--
FSWebServer - Example Index Page
Copyright (c) 2015 Hristo Gochkov. All rights reserved.
This file is part of the ESP8266WebServer library for Arduino environment.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>ESP Monitor</title>
<script type="text/javascript" src="graphs.js"></script>
<script type="text/javascript">
var heap,temp,digi;
var reloadPeriod = 1000;
var running = false;
function loadValues(){
if(!running) return;
var xh = new XMLHttpRequest();
xh.onreadystatechange = function(){
if (xh.readyState == 4){
if(xh.status == 200) {
var res = JSON.parse(xh.responseText);
heap.add(res.heap);
temp.add(res.analog);
digi.add(res.gpio);
if(running) setTimeout(loadValues, reloadPeriod);
} else running = false;
}
};
xh.open("GET", "/all", true);
xh.send(null);
};
function run(){
if(!running){
running = true;
loadValues();
}
}
function onBodyLoad(){
var refreshInput = document.getElementById("refresh-rate");
refreshInput.value = reloadPeriod;
refreshInput.onchange = function(e){
var value = parseInt(e.target.value);
reloadPeriod = (value > 0)?value:0;
e.target.value = reloadPeriod;
}
var stopButton = document.getElementById("stop-button");
stopButton.onclick = function(e){
running = false;
}
var startButton = document.getElementById("start-button");
startButton.onclick = function(e){
run();
}
// Example with 10K thermistor
//function calcThermistor(v) {
// var t = Math.log(((10230000 / v) - 10000));
// t = (1/(0.001129148+(0.000234125*t)+(0.0000000876741*t*t*t)))-273.15;
// return (t>120)?0:Math.round(t*10)/10;
//}
//temp = createGraph(document.getElementById("analog"), "Temperature", 100, 128, 10, 40, false, "cyan", calcThermistor);
temp = createGraph(document.getElementById("analog"), "Analog Input", 100, 128, 0, 1023, false, "cyan");
heap = createGraph(document.getElementById("heap"), "Current Heap", 100, 125, 0, 30000, true, "orange");
digi = createDigiGraph(document.getElementById("digital"), "GPIO", 100, 146, [0, 4, 5, 16], "gold");
run();
}
</script>
</head>
<body id="index" style="margin:0; padding:0;" onload="onBodyLoad()">
<div><p><a href="/_ac">MENU</a></p></div>
<div id="controls" style="display: block; border: 1px solid rgb(68, 68, 68); padding: 5px; margin: 5px; width: 362px; background-color: rgb(238, 238, 238);">
<label>Period (ms):</label>
<input type="number" id="refresh-rate"/>
<input type="button" id="start-button" value="Start"/>
<input type="button" id="stop-button" value="Stop"/>
</div>
<div id="heap"></div>
<div id="analog"></div>
<div id="digital"></div>
</body>
</html>

File diff suppressed because one or more lines are too long

@ -0,0 +1,97 @@
<!--
FSWebServer - Example Index Page
Copyright (c) 2015 Hristo Gochkov. All rights reserved.
This file is part of the ESP8266WebServer library for Arduino environment.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>ESP Monitor</title>
<script type="text/javascript" src="graphs.js"></script>
<script type="text/javascript">
var heap,temp,digi;
var reloadPeriod = 1000;
var running = false;
function loadValues(){
if(!running) return;
var xh = new XMLHttpRequest();
xh.onreadystatechange = function(){
if (xh.readyState == 4){
if(xh.status == 200) {
var res = JSON.parse(xh.responseText);
heap.add(res.heap);
temp.add(res.analog);
digi.add(res.gpio);
if(running) setTimeout(loadValues, reloadPeriod);
} else running = false;
}
};
xh.open("GET", "/all", true);
xh.send(null);
};
function run(){
if(!running){
running = true;
loadValues();
}
}
function onBodyLoad(){
var refreshInput = document.getElementById("refresh-rate");
refreshInput.value = reloadPeriod;
refreshInput.onchange = function(e){
var value = parseInt(e.target.value);
reloadPeriod = (value > 0)?value:0;
e.target.value = reloadPeriod;
}
var stopButton = document.getElementById("stop-button");
stopButton.onclick = function(e){
running = false;
}
var startButton = document.getElementById("start-button");
startButton.onclick = function(e){
run();
}
// Example with 10K thermistor
//function calcThermistor(v) {
// var t = Math.log(((10230000 / v) - 10000));
// t = (1/(0.001129148+(0.000234125*t)+(0.0000000876741*t*t*t)))-273.15;
// return (t>120)?0:Math.round(t*10)/10;
//}
//temp = createGraph(document.getElementById("analog"), "Temperature", 100, 128, 10, 40, false, "cyan", calcThermistor);
temp = createGraph(document.getElementById("analog"), "Analog Input", 100, 128, 0, 1023, false, "cyan");
heap = createGraph(document.getElementById("heap"), "Current Heap", 100, 125, 0, 30000, true, "orange");
digi = createDigiGraph(document.getElementById("digital"), "GPIO", 100, 146, [0, 4, 5, 16], "gold");
run();
}
</script>
</head>
<body id="index" style="margin:0; padding:0;" onload="onBodyLoad()">
<div id="controls" style="display: block; border: 1px solid rgb(68, 68, 68); padding: 5px; margin: 5px; width: 362px; background-color: rgb(238, 238, 238);">
<label>Period (ms):</label>
<input type="number" id="refresh-rate"/>
<input type="button" id="start-button" value="Start"/>
<input type="button" id="stop-button" value="Stop"/>
</div>
<div id="heap"></div>
<div id="analog"></div>
<div id="digital"></div>
</body>
</html>

@ -0,0 +1,97 @@
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <AutoConnect.h>
ESP8266WebServer server;
AutoConnect portal(server);
void handleRoot() {
String page = PSTR(
"<html>"
"</head>"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
"<style type=\"text/css\">"
"body {"
"-webkit-appearance:none;"
"-moz-appearance:none;"
"font-family:'Arial',sans-serif;"
"text-align:center;"
"}"
".menu {"
"text-align:right;"
"}"
".button {"
"display:inline-block;"
"border-radius:7px;"
"background:#73ad21;"
"margin:0 10px 0 10px;"
"padding:10px 20px 10px 20px;"
"text-decoration:none;"
"color:#000000;"
"}"
"</style>"
"</head>"
"<body>"
"<p class=\"menu\">" AUTOCONNECT_LINK(BAR_32) "</p>"
"BUILT-IN LED<br>"
"GPIO(");
page += String(BUILTIN_LED);
page += String(F(") : <span style=\"font-weight:bold;color:"));
page += digitalRead(BUILTIN_LED) ? String("Tomato\">HIGH") : String("SlateBlue\">LOW");
page += String(F("</span>"));
page += String(F("<p><a class=\"button\" href=\"/io?v=low\">low</a><a class=\"button\" href=\"/io?v=high\">high</a></p>"));
page += String(F("</body></html>"));
server.send(200, "text/html", page);
}
void handleGPIO() {
if (server.arg("v") == "low")
digitalWrite(BUILTIN_LED, LOW);
else if (server.arg("v") == "high")
digitalWrite(BUILTIN_LED, HIGH);
sendRedirect("/");
}
void sendRedirect(String uri) {
server.sendHeader("Location", uri, true);
server.send(302, "text/plain", "");
server.client().stop();
}
bool atDetect(IPAddress softapIP) {
Serial.println("Captive portal started, SoftAP IP:" + softapIP.toString());
return true;
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
pinMode(BUILTIN_LED, OUTPUT);
// Put the home location of the web site.
// But in usually, setting the home uri is not needed cause default location is "/".
//portal.home("/");
server.on("/", handleRoot);
server.on("/io", handleGPIO);
// Starts user web site included the AutoConnect portal.
portal.onDetect(atDetect);
if (portal.begin()) {
Serial.println("Started, IP:" + WiFi.localIP().toString());
}
else {
Serial.println("Connection failed.");
while (true) { yield(); }
}
}
void loop() {
server.handleClient();
portal.handleRequest(); // Need to handle AutoConnect menu.
if (WiFi.status() == WL_IDLE_STATUS) {
ESP.reset();
delay(1000);
}
}

@ -0,0 +1,97 @@
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <AutoConnect.h>
AutoConnect portal;
void handleRoot() {
String page = PSTR(
"<html>"
"</head>"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
"<style type=\"text/css\">"
"body {"
"-webkit-appearance:none;"
"-moz-appearance:none;"
"font-family:'Arial',sans-serif;"
"text-align:center;"
"}"
".menu {"
"text-align:right;"
"}"
".button {"
"display:inline-block;"
"border-radius:7px;"
"background:#73ad21;"
"margin:0 10px 0 10px;"
"padding:10px 20px 10px 20px;"
"text-decoration:none;"
"color:#000000;"
"}"
"</style>"
"</head>"
"<body>"
"<p class=\"menu\">" AUTOCONNECT_LINK(BAR_32) "</p>"
"BUILT-IN LED<br>"
"GPIO(");
page += String(BUILTIN_LED);
page += String(F(") : <span style=\"font-weight:bold;color:"));
page += digitalRead(BUILTIN_LED) ? String("Tomato\">HIGH") : String("SlateBlue\">LOW");
page += String(F("</span>"));
page += String(F("<p><a class=\"button\" href=\"/io?v=low\">low</a><a class=\"button\" href=\"/io?v=high\">high</a></p>"));
page += String(F("</body></html>"));
portal.host().send(200, "text/html", page);
}
void handleGPIO() {
ESP8266WebServer& server = portal.host();
if (server.arg("v") == "low")
digitalWrite(BUILTIN_LED, LOW);
else if (server.arg("v") == "high")
digitalWrite(BUILTIN_LED, HIGH);
sendRedirect("/");
}
void sendRedirect(String uri) {
ESP8266WebServer& server = portal.host();
server.sendHeader("Location", uri, true);
server.send(302, "text/plain", "");
server.client().stop();
}
bool atDetect(IPAddress softapIP) {
Serial.println("Captive portal started, SoftAP IP:" + softapIP.toString());
return true;
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
pinMode(BUILTIN_LED, OUTPUT);
// Put the home location of the web site.
// But in usually, setting the home uri is not needed cause default location is "/".
//portal.home("/");
// Starts user web site included the AutoConnect portal.
portal.onDetect(atDetect);
if (portal.begin()) {
ESP8266WebServer& server = portal.host();
server.on("/", handleRoot);
server.on("/io", handleGPIO);
Serial.println("Started, IP:" + WiFi.localIP().toString());
}
else {
Serial.println("Connection failed.");
while (true) { yield(); }
}
}
void loop() {
portal.handleClient();
if (WiFi.status() == WL_IDLE_STATUS) {
ESP.reset();
delay(1000);
}
}

@ -0,0 +1,117 @@
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <PageBuilder.h>
#include "AutoConnect.h"
ESP8266WebServer server;
AutoConnect portal(server);
static const char mold_page[] PROGMEM = {
"<html>"
"</head>"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
"<style type=\"text/css\">"
"body {"
"-webkit-appearance:none;"
"-moz-appearance:none;"
"font-family:'Arial',sans-serif;"
"text-align:center;"
"}"
".menu {"
"text-align:right;"
"}"
".button {"
"display:inline-block;"
"border-radius:7px;"
"background:#73ad21;"
"margin:0 10px 0 10px;"
"padding:10px 20px 10px 20px;"
"text-decoration:none;"
"color:#000000;"
"}"
"</style>"
"</head>"
"<body>"
"<p class=\"menu\">" AUTOCONNECT_LINK(BAR_32) "</p>"
"BUILT-IN LED<br>"
"GPIO({{LED}}) : <span style=\"font-weight:bold;color:{{COLOR}}\">{{GPIO}}</span>"
"<p><a class=\"button\" href=\"/io?v=low\">low</a><a class=\"button\" href=\"/io?v=high\">high</a></p>"
"</body>"
"</html>"
};
String getLEDPort(PageArgument& args) {
return String(BUILTIN_LED);
}
String setColor(PageArgument& args) {
return digitalRead(BUILTIN_LED) ? "Tomato" : "SlateBlue";
}
String readLEDPort(PageArgument& args) {
return digitalRead(BUILTIN_LED) ? "HIGH" : "LOW";
}
PageElement elm_gpio(mold_page, {
{"LED", getLEDPort},
{"COLOR", setColor},
{"GPIO", readLEDPort}
});
PageBuilder root("/", { elm_gpio });
String gpio(PageArgument& args) {
if (args.arg("v") == "low")
digitalWrite(BUILTIN_LED, LOW);
else if (args.arg("v") == "high")
digitalWrite(BUILTIN_LED, HIGH);
sendRedirect("/");
return "";
}
PageElement elm_io("{{IO}}", { {"IO", gpio} });
PageBuilder io("/io", { elm_io });
void sendRedirect(String uri) {
server.sendHeader("Location", uri, true);
server.send(302, "text/plain", "");
server.client().stop();
io.cancel();
}
bool atDetect(IPAddress softapIP) {
Serial.println("Captive portal started, SoftAP IP:" + softapIP.toString());
return true;
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
pinMode(BUILTIN_LED, OUTPUT);
// Put the home location of the web site.
// But in usually, setting the home uri is not needed cause default location is "/".
//portal.home("/");
// Starts user web site included the AutoConnect portal.
portal.onDetect(atDetect);
if (portal.begin()) {
// Register the page request handlers.
root.insert(server);
io.insert(server);
Serial.println("Started, IP:" + WiFi.localIP().toString());
}
else {
Serial.println("Connection failed.");
while (true) { yield(); }
}
}
void loop() {
portal.handleClient();
if (WiFi.status() == WL_IDLE_STATUS) {
ESP.reset();
delay(1000);
}
}

@ -0,0 +1,55 @@
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <time.h>
#include <AutoConnect.h>
ESP8266WebServer Server;
AutoConnect Portal(Server);
#define TIMEZONE (3600 * 9) // Tokyo
#define NTPServer1 "ntp.nict.jp" // NICT japan.
#define NTPServer2 "time1.google.com"
void rootPage() {
String content =
"<html>"
"<head>"
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
"</head>"
"<body>"
"<h2 align=\"center\" style=\"color:blue;margin:20px;\">Hello, world</h2>"
"<h3 align=\"center\" style=\"color:gray;margin:10px;\">{{DateTime}}</h3>"
"<p><a href=\"" AUTOCONNECT_URI "\">AutoConnect menu</a></p>"
"</body>"
"</html>";
static const char *wd[7] = { "Sun","Mon","Tue","Wed","Thr","Fri","Sat" };
struct tm *tm;
time_t t;
char dateTime[26];
t = time(NULL);
tm = localtime(&t);
sprintf(dateTime, "%04d/%02d/%02d(%s) %02d:%02d:%02d.",
tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
wd[tm->tm_wday],
tm->tm_hour, tm->tm_min, tm->tm_sec);
content.replace("{{DateTime}}", String(dateTime));
Server.send(200, "text/html", content);
}
void setup() {
delay(1000);
Serial.begin(115200);
Serial.println();
Server.on("/", rootPage);
if (Portal.begin()) {
Serial.println("WiFi connected: " + WiFi.localIP().toString());
configTime(TIMEZONE, 0, NTPServer1, NTPServer2);
}
}
void loop() {
Portal.handleClient();
}

@ -0,0 +1,31 @@
#######################################
# Datatypes (KEYWORD1)
#######################################
AutoConnect KEYWORD1
AutoConnectConfig KEYWORD1
AutoConnectCredential KEYWORD1
#######################################
# Methods and Functions (KEYWORD2)
#######################################
config KEYWORD2
begin KEYWORD2
del KEYWORD2
end KEYWORD2
entries KEYWORD2
handleClient KEYWORD2
handleRequest KEYWORD2
home KEYWORD2
host KEYWORD2
load KEYWORD2
onDetect KEYWORD2
onNotFound KEYWORD2
save KEYWORD2
#######################################
# Literals (KEYWORD3)
#######################################
AC_WEBSERVER_PARASITIC LITERAL1
AC_WEBSERVER_HOSTED LITERAL1
AC_SAVECREDENTIAL_NEVER LITERAL1
AC_SAVECREDENTIAL_AUTO LITERAL1

@ -0,0 +1,13 @@
{
"name": "AutoConnect",
"keywords": "communication, http, server, web, wifi, wi-fi",
"description": "ESP8266 WLAN configuration at runtime with web interface.",
"repository":
{
"type": "git",
"url": "https://github.com/Hieromon/AutoConnect.git"
},
"frameworks": "arduino",
"platforms": "espressif8266",
"version": "0.9.1"
}

@ -0,0 +1,10 @@
name=AutoConnect
version=0.9.1
author=Hieromon Ikasamo <hieromon@gmail.com>
maintainer=Hieromon Ikasamo <hieromon@gmail.com>
sentence=ESP8266 WLAN configuration at runtime with web interface.
paragraph=A library for easily implementing the Web interface constituting the WLAN for ESP8266 WiFi connection. With this library to make a sketch which connect from ESP8266 to the access point at runtime by the web interface without hardcoded SSID and password.
category=Communication
url=https://github.com/Hieromon/AutoConnect.git
dependencies=ESP8266WebServer, ESP8266WiFi
architectures=esp8266

@ -0,0 +1,76 @@
# Project information
site_name: 'AutoConnect for ESP8266'
site_description: 'ESP8266 WLAN configuration at run time with web interface'
site_author: 'Hieromon Ikasamo'
site_url: 'https://Hieromon.github.io/AutoConnect/'
# Docs
docs_dir: 'docs'
# Pages
pages:
- 'Overview' : index.md
- 'Getting started' : gettingstarted.md
- 'AutoConnect menu' : menu.md
- 'Usage the library' : usage.md
- 'Library APIs' : api.md
- 'Examples' : examples.md
- 'FAQ' : faq.md
- 'License' : license.md
# Repository
repo_name: 'Hieromon/AutoConnect'
repo_url: 'https://github.com/Hieromon/AutoConnect'
# Copyright
copyright: 'Copyright &copy; 2018 Hieromon Ikasamo'
# Configuration
theme:
name: 'material'
feature:
tabs: true
language: 'en'
logo: 'images/arduino-logo.svg'
palette:
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
# Customization
extra_css:
- 'css/paragraph.css'
extra_javascript:
- 'js/gifffer.min.js'
extra:
social:
- type: 'github'
link: 'https://github.com/Hieromon'
- type: 'twitter'
link: 'https://twitter.com/hieromon'
# Google Analytics
google_analytics:
- 'UA-XXXXXXXX-X'
- 'auto'
# Extensions
markdown_extensions:
- admonition
- footnotes
- pymdownx.betterem:
smart_enable: all
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist
- codehilite:
linenums: none
use_pygments: true
- toc:
permalink: true

@ -0,0 +1,584 @@
/**
* AutoConnect class implementation.
* @file AutoConnect.cpp
* @author hieromon@gmail.com
* @version 0.9.1
* @date 2018-02-13
* @copyright MIT license.
*/
#include "AutoConnect.h"
#include "AutoConnectCredentail.h"
/**
* AutoConnect default constructor. This entry activates WebServer
* internally and the web server is allocated internal.
*/
AutoConnect::AutoConnect() {
_initialize();
_webServer.reset(nullptr);
_dnsServer.reset(nullptr);
_webServerAlloc = AC_WEBSERVER_HOSTED;
}
/**
* Run the AutoConnect site using the externally ensured ESP 8266 WebServer.
* User's added URI handler response can be included in handleClient method.
* @param webServer A reference of ESP8266WebServer instance.
*/
AutoConnect::AutoConnect(ESP8266WebServer& webServer) {
_initialize();
_webServer.reset(&webServer);
_dnsServer.reset(nullptr);
_webServerAlloc = AC_WEBSERVER_PARASITIC;
}
void AutoConnect::_initialize() {
_rfConnect = false;
_rfReset = false;
_currentPageElement = nullptr;
_menuTitle = String(AUTOCONNECT_MENU_TITLE);
_portalTimeout = AUTOCONNECT_TIMEOUT;
memset(&_credential, 0x00, sizeof(struct station_config));
}
/**
* A destructor. Free AutoConnect web pages and release Web server.
* When the server is hosted it will be purged.
*/
AutoConnect::~AutoConnect() {
end();
}
/**
* Starts establishing WiFi connection without SSID and password.
*/
bool AutoConnect::begin() {
return begin(nullptr, nullptr);
}
/**
* Starts establishing WiFi connection.
* Before establishing, start the Web server and DNS server for the captive
* portal. Then begins connection establishment in WIFI_STA mode. If
* connection can not established with the specified SSID and password,
* switch to WIFI_AP_STA mode and activate SoftAP.
* @param ssid SSID to be connected.
* @param passphrase Password for connection.
* @param timeout A time out value in milliseconds for waiting connection.
* @retval true Connection established, AutoConnect service started with WIFI_STA mode.
* @retval false Could not connected, Captive portal started with WIFI_AP_STA mode.
*/
bool AutoConnect::begin(const char* ssid, const char* passphrase, unsigned long timeout) {
_portalTimeout = timeout;
return begin(ssid, passphrase);
}
/**
* Starts establishing WiFi connection.
* Before establishing, start the Web server and DNS server for the captive
* portal. Then begins connection establishment in WIFI_STA mode. If
* connection can not established with the specified SSID and password,
* switch to WIFI_AP_STA mode and activate SoftAP.
* @param ssid SSID to be connected.
* @param passphrase Password for connection.
* @retval true Connection established, AutoConnect service started with WIFI_STA mode.
* @retval false Could not connected, Captive portal started with WIFI_AP_STA mode.
*/
bool AutoConnect::begin(const char* ssid, const char* passphrase) {
bool cs;
WiFi.mode(WIFI_STA);
delay(100);
// Try to connect by STA immediately.
if (ssid == nullptr && passphrase == nullptr)
WiFi.begin();
else
WiFi.begin(ssid, passphrase);
AC_DBG("WiFi.begin(%s%s%s)\n", ssid == nullptr ? "" : ssid, passphrase == nullptr ? "" : ",", passphrase == nullptr ? "" : passphrase);
cs = _waitForConnect(_portalTimeout) == WL_CONNECTED;
_currentHostIP = WiFi.localIP();
// Rushing into the portal.
_startWebServer();
if (!cs) {
// Change WiFi working mode, Enable AP with STA
WiFi.setAutoConnect(false);
WiFi.disconnect();
WiFi.mode(WIFI_AP_STA);
delay(100);
// Connection unsuccessful, launch the captive portal.
if (!(_apConfig.apip == IPAddress(0, 0, 0, 0) || _apConfig.gateway == IPAddress(0, 0, 0, 0) || _apConfig.netmask == IPAddress(0, 0, 0, 0))) {
_config();
}
WiFi.softAP(_apConfig.apid.c_str(), _apConfig.psk.c_str(), _apConfig.channel, _apConfig.hidden);
while (WiFi.softAPIP() == IPAddress(0, 0, 0, 0))
yield();
_currentHostIP = WiFi.softAPIP();
AC_DBG("SoftAP %s/%s CH(%d) H(%d) IP:%s\n", _apConfig.apid.c_str(), _apConfig.psk.c_str(), _apConfig.channel, _apConfig.hidden, WiFi.softAPIP().toString().c_str());
// Fork to the exit routine that starts captive portal.
cs = _onDetectExit ? _onDetectExit(_currentHostIP) : true;
// Start captive portal without cancellation by DetectExit.
if (cs) {
// Prepare for redirecting captive portal detection.
// Pass all URL requests to _captivePortal to disguise the captive portal.
_startDNSServer();
// Start the captive portal to make a new connection
while (WiFi.status() != WL_CONNECTED && !_rfReset) {
handleClient();
// Force execution of queued processes.
yield();
}
cs = WiFi.status() == WL_CONNECTED;
// If WLAN successfully connected, release DNS server.
if (cs) {
_dnsServer->stop();
_dnsServer.reset();
}
}
}
return cs;
}
/**
* Configure AutoConnect portal access point.
* @param ap SSID for access point.
* @param psk Password for access point.
*/
bool AutoConnect::config(const char* ap, const char* password) {
_apConfig.apid = String(ap);
_apConfig.psk = String(password);
return _config();
}
/**
* Configure AutoConnect portal access point.
* @param Config AutoConnectConfig class instance.
*/
bool AutoConnect::config(AutoConnectConfig& Config) {
_apConfig = Config;
return _config();
}
/**
* Configure access point.
* Set up access point with internal AucoConnectConfig parameter corrected
* by Config method.
*/
bool AutoConnect::_config() {
return WiFi.softAPConfig(_apConfig.apip, _apConfig.gateway, _apConfig.netmask);
}
/**
* Put a user site's home URI.
* The URI specified by home is linked from "HOME" in the AutoConnect
* portal menu.
* @param uri A URI string of user site's home.
*/
void AutoConnect::home(String uri) {
_apConfig.homeUri = uri;
}
/**
* Stops AutoConnect captive portal service.
*/
void AutoConnect::end() {
if (_responsePage != nullptr) {
_responsePage->~PageBuilder();
delete _responsePage;
}
if (_currentPageElement != nullptr)
_currentPageElement->~PageElement();
_stopPortal();
if (_webServer) {
switch (_webServerAlloc) {
case AC_WEBSERVER_HOSTED:
if (_dnsServer)
_dnsServer.reset();
_webServer.reset();
break;
case AC_WEBSERVER_PARASITIC:
_webServer.release();
break;
}
}
}
/**
* Returns the current hosted ESP8266WebServer.
*/
ESP8266WebServer& AutoConnect::host() {
return *_webServer;
}
/**
* Starts Web server for AutoConnect service.
*/
void AutoConnect::_startWebServer() {
// Boot Web server
if (!_webServer) {
// Only when hosting WebServer internally
_webServer.reset(new ESP8266WebServer(80));
_webServerAlloc = AC_WEBSERVER_HOSTED;
AC_DBG("ESP8266WebServer allocated\n");
}
// Discard the original the not found handler to redirect captive portal detection.
// It is supposed to evacuate but ESP8266WebServer::_notFoundHandler is not accessible.
_webServer->onNotFound(std::bind(&AutoConnect::_handleNotFound, this));
// here, Prepare PageBuilders for captive portal
_responsePage = new PageBuilder();
_responsePage->exitCanHandle(std::bind(&AutoConnect::_classifyHandle, this, std::placeholders::_1, std::placeholders::_2));
_responsePage->insert(*_webServer);
_webServer->begin();
AC_DBG("http server started\n");
}
/**
* Starts DNS server for Captive portal.
*/
void AutoConnect::_startDNSServer() {
// Boot DNS server, set up for captive portal redirection.
if (!_dnsServer) {
_dnsServer.reset(new DNSServer());
_dnsServer->setErrorReplyCode(DNSReplyCode::NoError);
_dnsServer->start(AUTOCONNECT_DNSPORT, "*", WiFi.softAPIP());
AC_DBG("DNS server started\n");
}
}
/**
* Handling for the AutoConnect web interface.
* Invoke the handleClient of parent web server to process client request of
* AutoConnect WEB interface.
* No effects when the web server is not available.
*/
void AutoConnect::handleClient() {
// Is there DNS Server process next request?
if (_dnsServer)
_dnsServer->processNextRequest();
// handleClient valid only at _webServer activated.
if (_webServer)
_webServer->handleClient();
handleRequest();
}
/**
* Handling for the AutoConnect menu request.
*/
void AutoConnect::handleRequest() {
// Handling processing requests to AutoConnect.
if (_rfConnect) {
// Leave from the AP currently.
if (WiFi.status() == WL_CONNECTED) {
WiFi.disconnect();
delay(100);
}
// An attempt to establish a new AP.
AC_DBG("Request for %s\n", (const char*)_credential.ssid);
WiFi.begin((const char*)_credential.ssid, (const char*)_credential.password);
if (_waitForConnect(_portalTimeout) == WL_CONNECTED) {
memcpy(_credential.bssid, WiFi.BSSID(), sizeof(station_config::bssid));
_currentHostIP = WiFi.localIP();
_redirectURI = String(AUTOCONNECT_URI_SUCCESS);
// Save current credential
if (_apConfig.autoSave == AC_SAVECREDENTIAL_AUTO) {
AutoConnectCredential credit;
credit.save(&_credential);
AC_DBG("%s credential saved\n", _credential.ssid);
}
}
else {
_currentHostIP = WiFi.softAPIP();
_redirectURI = String(AUTOCONNECT_URI_FAIL);
}
_rfConnect = false;
}
if (_rfReset) {
// Reset or disconnect by portal operation result
_stopPortal();
AC_DBG("Reset");
delay(1000);
ESP.reset();
delay(1000);
}
if (_rfDisconnect) {
// Disconnect from the current AP.
_stopPortal();
WiFi.disconnect();
while (WiFi.status() == WL_CONNECTED) {
delay(100);
yield();
}
AC_DBG("Disconnected");
// Reset disconnection request, restore the menu title.
_rfDisconnect = false;
_menuTitle = String(AUTOCONNECT_MENU_TITLE);
if (_apConfig.autoReset) {
delay(1000);
ESP.reset();
delay(1000);
}
}
}
/**
* Register the exit routine for the starting captive portal.
* @param fn A function of the exit routine.
*/
void AutoConnect::onDetect(DetectExit_ft fn) {
_onDetectExit = fn;
}
/**
* Register the handler function for undefined url request detected.
* @param fn A function of the not found handler.
*/
void AutoConnect::onNotFound(ESP8266WebServer::THandlerFunction fn) {
_notFoundHandler = fn;
}
/**
* Disconnect from the AP and stop the AutoConnect portal.
* Stops DNS server and flush tcp sending.
*/
void AutoConnect::_stopPortal() {
if (_dnsServer && _webServerAlloc == AC_WEBSERVER_HOSTED)
_dnsServer->stop();
if (_webServer) {
_webServer->client().stop();
delay(1000);
}
WiFi.softAPdisconnect(false);
}
/**
* Redirect to captive portal if we got a request for another domain.
* Return true in that case so the page handler do not try to handle the request again.
*/
bool AutoConnect::_captivePortal() {
String hostHeader = _webServer->hostHeader();
if (!_isIP(hostHeader) && (hostHeader != WiFi.localIP().toString())) {
String location = String("http://") + _webServer->client().localIP().toString() + String(AUTOCONNECT_URI);
_webServer->sendHeader("Location", location, true);
_webServer->send(302, "text/plain", "");
_webServer->client().flush();
_webServer->client().stop();
return true;
}
return false;
}
/**
* A handler that redirects access to the captive portal to the connection
* configuration page.
*/
void AutoConnect::_handleNotFound() {
if (!_captivePortal()) {
if (_notFoundHandler) {
_notFoundHandler();
}
else {
PageElement page404(_PAGE_404, { { "HEAD", std::bind(&AutoConnect::_token_HEAD, this, std::placeholders::_1) } });
String html = page404.build();
_webServer->sendHeader("Cache-Control", "no-cache, no-store, must-revalidate", true);
_webServer->sendHeader("Pragma", "no-cache");
_webServer->sendHeader("Expires", "-1");
_webServer->sendHeader("Content-Length", String(html.length()));
_webServer->send(404, "text/html", html);
}
}
}
/**
* Reset the ESP8266 module.
* It is called from the PageBuilder of the disconnect page and indicates
* the request for disconnection. It will be into progress after handleClient.
*/
String AutoConnect::_induceReset(PageArgument& args) {
_rfReset = true;
return String("Reset in progress...");
}
/**
* Disconnect from AP.
* It is called from the PageBuilder of the disconnect page and indicates
* the request for disconnection. It will be into progress after handleClient.
*/
String AutoConnect::_induceDisconnect(PageArgument& args) {
_rfDisconnect = true;
_menuTitle = String("Disconnect");
return "";
}
/**
* Indicates a connection establishment request and returns a redirect
* response to the waiting for connection page. This is called from
* handling of the current request by PageBuilder triggered by handleClient().
* If "Credential" exists in POST parameter, it reads from EEPROM.
* @param args http request arguments.
* @retval A redirect response including "Location:" header.
*/
String AutoConnect::_induceConnect(PageArgument& args) {
// Retrieve credential from the post method content.
if (args.hasArg(AUTOCONNECT_PARAMID_CRED)) {
// Read from EEPROM
AutoConnectCredential credential;
struct station_config entry;
AC_DBG("Load credential:%s\n", args.arg(AUTOCONNECT_PARAMID_CRED).c_str());
credential.load(args.arg(AUTOCONNECT_PARAMID_CRED).c_str(), &entry);
strncpy(reinterpret_cast<char*>(_credential.ssid), reinterpret_cast<const char*>(entry.ssid), sizeof(_credential.ssid));
strncpy(reinterpret_cast<char*>(_credential.password), reinterpret_cast<const char*>(entry.password), sizeof(_credential.password));
}
else {
// Credential had by the post parameter.
strncpy(reinterpret_cast<char*>(_credential.ssid), args.arg(AUTOCONNECT_PARAMID_SSID).c_str(), sizeof(_credential.ssid));
strncpy(reinterpret_cast<char*>(_credential.password), args.arg(AUTOCONNECT_PARAMID_PASS).c_str(), sizeof(_credential.password));
}
// Turn on the trigger to start WiFi.begin().
_rfConnect = true;
// Redirect to waiting URI while executing connection request.
//_webServer->sendHeader("Location", String("http://") + _webServer->client().localIP().toString() + String(AUTOCONNECT_URI_RESULT), true);
String url = String("http://") + _webServer->client().localIP().toString() + String(AUTOCONNECT_URI_RESULT);
_webServer->sendHeader("Location", url, true);
//_webServer->sendHeader("Connection", "keep-alive");
_webServer->send(302, "text/plain", "");
_webServer->client().flush();
_webServer->client().stop();
_responsePage->cancel();
return "";
}
/**
* Responds response as redirect to the connection result page.
* A destination as _redirectURI is indicated by loop to establish connection.
*/
String AutoConnect::_invokeResult(PageArgument& args) {
String redirect = String("http://") + _currentHostIP.toString() + _redirectURI;
_webServer->sendHeader("Location", redirect, true);
_webServer->send(302, "text/plain", "");
_webServer->client().flush();
_webServer->client().stop();
_responsePage->cancel();
return "";
}
/**
* Classify the requested URI to responsive page builder.
* There is always only one PageBuilder instance that can exist in
* AutoConnect for saving RAM. Invokes a subordinate function that
* dynamically generates a response page at handleRequest. This is
* a part of the handling of http request originated from handleClient.
*/
bool AutoConnect::_classifyHandle(HTTPMethod method, String uri) {
AC_DBG("%s%s\n", _webServer->hostHeader().c_str(), uri.c_str());
if (uri == _uri) {
return true; // The response page already exists.
}
// Dispose decrepit page
_responsePage->clearElement();
if (_currentPageElement != nullptr)
delete _currentPageElement;
_uri = String();
// Create the page dynamically
if ((_currentPageElement = _setupPage(uri)) != nullptr) {
_uri = String(uri);
_responsePage->addElement(*_currentPageElement);
}
_responsePage->setUri(_uri.c_str());
AC_DBG("Page[%s] allocated\n", _responsePage->uri());
return _currentPageElement != nullptr ? true : false;
}
/**
* It checks whether the specified character string is a valid IP address.
* @param ipStr IP string for validation.
* @return true Valid.
*/
bool AutoConnect::_isIP(String ipStr) {
for (uint8_t i = 0; i < ipStr.length(); i++) {
char c = ipStr.charAt(i);
if (c != '.' && (c < '0' || c > '9'))
return false;
}
return true;
}
/**
* Convert MAC address in uint8_t array to Sting XX:XX:XX:XX:XX:XX format.
* @param mac Array of MAC address 6 bytes.
* @retval MAC address string in XX:XX:XX:XX:XX:XX format.
*/
String AutoConnect::_toMACAddressString(const uint8_t mac[]) {
String macAddr = "";
for (uint8_t i = 0; i < 6; i++) {
char buf[3];
sprintf(buf, "%02X", mac[i]);
macAddr += buf;
if (i < 5)
macAddr += ':';
}
return macAddr;
}
/**
* Convert dBm to the wifi signal quality.
* @param rssi dBm.
* @retval a signal quality percentage.
*/
unsigned int AutoConnect::_toWiFiQuality(int32_t rssi) {
unsigned int qu;
if (rssi == 31) // WiFi signal is weak and RSSI value is unreliable.
qu = 0;
else if (rssi <= -100)
qu = 0;
else if (rssi >= -50)
qu = 100;
else
qu = 2 * (rssi + 100);
return qu;
}
/**
* Wait for establishment of the connection until the specified time expires.
* @param timeout Expiration time by millisecond unit.
* @retval wl_status_t
*/
wl_status_t AutoConnect::_waitForConnect(unsigned long timeout) {
wl_status_t wifiStatus;
AC_DBG("Connecting");
unsigned long st = millis();
while ((wifiStatus = WiFi.status()) != WL_CONNECTED) {
if (timeout) {
if (millis() - st > timeout)
break;
}
#ifdef AC_DEBUG
AC_DEBUG_PORT.print('.');
#endif // AC_DEBUG
delay(300);
}
AC_DBG("%s IP:%s\n", wifiStatus == WL_CONNECTED ? "established" : "time out", WiFi.localIP().toString().c_str());
return wifiStatus;
}

@ -0,0 +1,290 @@
/**
* Declaration of AutoConnect class and accompanying AutoConnectConfig class.
* @file AutoConnect.h
* @author hieromon@gmail.com
* @version 0.9.1
* @date 2018-02-13
* @copyright MIT license.
*/
#ifndef _AUTOCONNECT_H_
#define _AUTOCONNECT_H_
#include <vector>
#include <memory>
#include <functional>
#include <DNSServer.h>
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <EEPROM.h>
#include <PageBuilder.h>
extern "C" {
#include <user_interface.h>
}
#include "AutoConnectPage.h"
// Uncomment the following AC_DEBUG to enable debug output.
//#define AC_DEBUG
// Debug output destination can be defined externally with AC_DEBUG_PORT
#ifndef AC_DEBUG_PORT
#define AC_DEBUG_PORT Serial
#endif
#ifdef AC_DEBUG
#define AC_DBG(...) do {AC_DEBUG_PORT.print("[AC] "); AC_DEBUG_PORT.printf( __VA_ARGS__ );} while (0)
#else
#define AC_DBG(...)
#endif
#ifndef AUTOCONNECT_APID
#define AUTOCONNECT_APID "esp8266ap"
#endif
#ifndef AUTOCONNECT_PSK
#define AUTOCONNECT_PSK "12345678"
#endif
#ifndef AUTOCONNECT_AP_IP
#define AUTOCONNECT_AP_IP 0x01F4A8C0 //*< 192.168.244.1 */
#endif // !AUTOCONNECT_AP_IP
#ifndef AUTOCONNECT_AP_GW
#define AUTOCONNECT_AP_GW 0x01F4A8C0 //*< 192.168.244.1 */
#endif // !AUTOCONNECT_AP_GW
#ifndef AUTOCONNECT_AP_NM
#define AUTOCONNECT_AP_NM 0x00FFFFFF //*< 255.255.255.0 */
#endif // !AUTOCONNECT_AP_NM
#ifndef AUTOCONNECT_URI
#define AUTOCONNECT_URI "/_ac"
#endif
#ifndef AUTOCONNECT_HOMEURI
#define AUTOCONNECT_HOMEURI "/"
#endif
#ifndef AUTOCONNECT_MENU_TITLE
#define AUTOCONNECT_MENU_TITLE "AutoConnect"
#endif
#define AUTOCONNECT_MENU_TITLE_CONNETED "Connected"
#define AUTOCONNECT_URI_CONFIG AUTOCONNECT_URI "/config"
#define AUTOCONNECT_URI_CONNECT AUTOCONNECT_URI "/connect"
#define AUTOCONNECT_URI_RESULT AUTOCONNECT_URI "/result"
#define AUTOCONNECT_URI_OPEN AUTOCONNECT_URI "/open"
#define AUTOCONNECT_URI_DISCON AUTOCONNECT_URI "/disc"
#define AUTOCONNECT_URI_RESET AUTOCONNECT_URI "/reset"
#define AUTOCONNECT_URI_SUCCESS AUTOCONNECT_URI "/success"
#define AUTOCONNECT_URI_FAIL AUTOCONNECT_URI "/fail"
#ifndef AUTOCONNECT_TIMEOUT
#define AUTOCONNECT_TIMEOUT 30000
#endif
#ifndef AUTOCONNECT_STARTUPTIME
#define AUTOCONNECT_STARTUPTIME 10
#endif
#ifndef AUTOCONNECT_DNSPORT
#define AUTOCONNECT_DNSPORT 53
#endif
/**< A type to save established credential at WiFi.begin automatically. */
typedef enum AC_SAVECREDENTIAL {
AC_SAVECREDENTIAL_NEVER,
AC_SAVECREDENTIAL_AUTO
} AC_SAVECREDENTIAL_t;
class AutoConnectConfig {
public:
/**
* AutoConnectConfig default constructor.
* SSID for the captive portal access point assumes AUTOCONNECT_APID which
* assigned from macro. Password is same as above too.
*/
AutoConnectConfig() :
apip(AUTOCONNECT_AP_IP),
gateway(AUTOCONNECT_AP_GW),
netmask(AUTOCONNECT_AP_NM),
apid(String(AUTOCONNECT_APID)),
psk(String(AUTOCONNECT_PSK)),
channel(1),
hidden(0),
autoSave(AC_SAVECREDENTIAL_AUTO),
autoReset(true),
uptime(AUTOCONNECT_STARTUPTIME),
homeUri(AUTOCONNECT_HOMEURI) {}
/**
* Configure by SSID for the captive portal access point and password.
*/
AutoConnectConfig(const char* ap, const char* password) :
apip(AUTOCONNECT_AP_IP),
gateway(AUTOCONNECT_AP_GW),
netmask(AUTOCONNECT_AP_NM),
apid(String(ap)),
psk(String(password)),
channel(1),
hidden(0),
autoSave(AC_SAVECREDENTIAL_AUTO),
autoReset(true),
uptime(AUTOCONNECT_STARTUPTIME),
homeUri(AUTOCONNECT_HOMEURI) {}
~AutoConnectConfig() {}
AutoConnectConfig& operator=(const AutoConnectConfig& o) {
apip = o.apip;
gateway = o.gateway;
netmask = o.netmask;
apid = o.apid;
psk = o.psk;
channel = o.channel;
hidden = o.hidden;
autoSave = o.autoSave;
autoReset = o.autoReset;
uptime = o.uptime;
homeUri = o.homeUri;
return *this;
}
IPAddress apip; /**< SoftAP IP address */
IPAddress gateway; /**< SoftAP gateway address */
IPAddress netmask; /**< SoftAP subnet mask */
String apid; /**< SoftAP SSID */
String psk; /**< SoftAP password */
uint8_t channel; /**< SoftAP used wifi channel */
uint8_t hidden; /**< SoftAP SSID hidden */
AC_SAVECREDENTIAL_t autoSave; /**< Auto save credential */
bool autoReset; /**< Reset ESP8266 module automatically when WLAN disconnected. */
int uptime; /**< Length of start up time */
String homeUri; /**< A URI of user site */
};
class AutoConnect {
public:
AutoConnect();
AutoConnect(ESP8266WebServer& webServer);
~AutoConnect();
bool config(AutoConnectConfig& Config);
bool config(const char* ap, const char* password = nullptr);
void home(String uri);
bool begin();
bool begin(const char* ssid, const char* passphrase);
bool begin(const char* ssid, const char* passphrase, unsigned long timeout);
void end();
void handleClient();
void handleRequest();
ESP8266WebServer& host();
typedef std::function<bool(IPAddress)> DetectExit_ft;
void onDetect(DetectExit_ft fn);
void onNotFound(ESP8266WebServer::THandlerFunction fn);
protected:
enum _webServerAllocateType {
AC_WEBSERVER_PARASITIC,
AC_WEBSERVER_HOSTED
};
typedef enum _webServerAllocateType AC_WEBSERVER_TYPE;
void _initialize();
bool _config();
void _startWebServer();
void _startDNSServer();
void _handleNotFound();
void _stopPortal();
bool _classifyHandle(HTTPMethod mothod, String uri);
PageElement* _setupPage(String uri);
/** Request handlers implemented by Page Builder */
String _induceConnect(PageArgument& args);
String _induceDisconnect(PageArgument& args);
String _induceReset(PageArgument& args);
String _invokeResult(PageArgument& args);
/** For portal control */
bool _captivePortal();
bool _isIP(String ipStr);
wl_status_t _waitForConnect(unsigned long timeout);
/** Utilities */
static String _toMACAddressString(const uint8_t mac[]);
static unsigned int _toWiFiQuality(int32_t rssi);
DetectExit_ft _onDetectExit;
ESP8266WebServer::THandlerFunction _notFoundHandler;
std::unique_ptr<ESP8266WebServer> _webServer;
std::unique_ptr<DNSServer> _dnsServer;
AC_WEBSERVER_TYPE _webServerAlloc;
PageBuilder* _responsePage;
PageElement* _currentPageElement;
/** configurations */
AutoConnectConfig _apConfig;
struct station_config _credential;
uint8_t _hiddenSSIDCount;
unsigned long _portalTimeout;
/** The control indicators */
bool _rfConnect; /**< URI /connect requested */
bool _rfDisconnect; /**< URI /disc requested */
bool _rfReset; /**< URI /reset requested */
String _uri;
String _redirectURI;
IPAddress _currentHostIP;
String _menuTitle;
/** PegeElements of AutoConnect site. */
static const char _CSS_BASE[] PROGMEM;
static const char _CSS_UL[] PROGMEM;
static const char _CSS_ICON_LOCK[] PROGMEM;
static const char _CSS_INPUT_BUTTON[] PROGMEM;
static const char _CSS_INPUT_TEXT[] PROGMEM;
static const char _CSS_TABLE[] PROGMEM;
static const char _CSS_LUXBAR[] PROGMEM;
static const char _ELM_HTML_HEAD[] PROGMEM;
static const char _ELM_MENU[] PROGMEM;
static const char _PAGE_STAT[] PROGMEM;
static const char _PAGE_CONFIGNEW[] PROGMEM;
static const char _PAGE_OPENCREDT[] PROGMEM;
static const char _PAGE_SUCCESS[] PROGMEM;
static const char _PAGE_RESETTING[] PROGMEM;
static const char _PAGE_DISCONN[] PROGMEM;
static const char _PAGE_FAIL[] PROGMEM;
static const char _PAGE_404[] PROGMEM;
/** Token handlers for PageBuilder */
String _token_CSS_BASE(PageArgument& args);
String _token_CSS_UL(PageArgument& args);
String _token_CSS_ICON_LOCK(PageArgument& args);
String _token_CSS_INPUT_BUTTON(PageArgument& args);
String _token_CSS_INPUT_TEXT(PageArgument& args);
String _token_CSS_TABLE(PageArgument& args);
String _token_CSS_LUXBAR(PageArgument& args);
String _token_HEAD(PageArgument& args);
String _token_MENU(PageArgument& args);
String _token_ESTAB_SSID(PageArgument& args);
String _token_WIFI_MODE(PageArgument& args);
String _token_WIFI_STATUS(PageArgument& args);
String _token_STATION_STATUS(PageArgument& args);
String _token_LOCAL_IP(PageArgument& args);
String _token_SOFTAP_IP(PageArgument& args);
String _token_GATEWAY(PageArgument& args);
String _token_NETMASK(PageArgument& args);
String _token_AP_MAC(PageArgument& args);
String _token_STA_MAC(PageArgument& args);
String _token_CHANNEL(PageArgument& args);
String _token_DBM(PageArgument& args);
String _token_CPU_FREQ(PageArgument& args);
String _token_FLASH_SIZE(PageArgument& args);
String _token_CHIP_ID(PageArgument& args);
String _token_FREE_HEAP(PageArgument& args);
String _token_LIST_SSID(PageArgument& args);
String _token_HIDDEN_COUNT(PageArgument& args);
String _token_OPEN_SSID(PageArgument& args);
String _token_UPTIME(PageArgument& args);
friend class ESP8266WebServer;
};
#endif // _AUTOCONNECT_H_

@ -0,0 +1,276 @@
/**
* AutoConnectCredentail class implementation.
* @file AutoConnectCredentail.cpp
* @author hieromon@gmail.com
* @version 1.0.0
* @date 2018-02-17
* @copyright MIT license.
*/
#include <EEPROM.h>
#include "AutoConnectCredentail.h"
#define AC_IDENTIFIER "AC_CREDT"
#define AC_HEADERSIZE ((int)(AC_IDENTIFIER_OFFSET + sizeof(AC_IDENTIFIER) - 1 + sizeof(uint8_t) + sizeof(uint16_t)))
/**
* AutoConnectCredential constructor takes the available count of saved
* entries.
* A stored credential data structure in EEPROM.
* 0 7 8 9a b (t)
* +--------+-+--+-----------------+-----------------+--+
* |AC_CREDT|e|ss|ssid\0pass\0bssid|ssid\0pass\0bssid|\0|
* +--------+-+--+-----------------+-----------------+--+
* AC_CREDT : Identifier. 8 characters.
* e : Number of contained entries(uint8_t).
* ss : Container size, excluding ID and number of entries(uint16_t).
* ssid: SSID string with null termination.
* password : Password string with null termination.
* bssid : BSSID 6 bytes.
* t : The end of the container is a continuous '\0'.
* The AC_CREDT identifier is at the beginning of the area.
* SSID and PASSWORD are terminated by '\ 0'.
* Free area are filled with FF, which is reused as an area for insertion.
*/
AutoConnectCredential::AutoConnectCredential() {
char id_c[sizeof(AC_IDENTIFIER) - 1];
uint8_t c;
EEPROM.begin(AC_HEADERSIZE);
// Validate the save area of the EEPROM.
// If it is a valid area, retrieve the stored number of entries,
// if the identifier is not saved, initialize the EEPROM area.
for (c = AC_IDENTIFIER_OFFSET; c < AC_IDENTIFIER_OFFSET + sizeof(id_c); c++) {
id_c[c] = static_cast<char>(EEPROM.read(c));
}
if (!strncmp(id_c, AC_IDENTIFIER, sizeof(id_c))) {
_entries = EEPROM.read(static_cast<int>(c++));
_containSize = EEPROM.read(static_cast<int>(c++));
_containSize += EEPROM.read(static_cast<int>(c)) << 8;
}
else {
_entries = 0;
_containSize = 0;
}
EEPROM.end();
}
/**
* The destructor ends EEPROM access.
*/
AutoConnectCredential::~AutoConnectCredential() {
EEPROM.end();
}
/**
* Delete the credential entry for the specified SSID in the EEPROM.
* @param ssid A SSID character string to be deleted.
* @retval true The entry successfully delete.
* false Could not deleted.
*/
bool AutoConnectCredential::del(const char* ssid) {
struct station_config entry;
bool rc = false;
if (load(ssid, &entry) >= 0) {
// Saved credential detected, _ep has the entry location.
EEPROM.begin(AC_HEADERSIZE + _containSize);
_dp = _ep;
// Erase SSID
while (EEPROM.read(_dp) != 0x00)
EEPROM.write(_dp++, 0xff);
// Erase Password
EEPROM.write(_dp++, 0xff);
while (EEPROM.read(_dp) != 0x00)
EEPROM.write(_dp++, 0xff);
// Erase BSSID
EEPROM.write(_dp++, 0xff);
for (uint8_t i = 0; i < sizeof(station_config::bssid); i++)
EEPROM.write(_dp++, 0xff);
// End 0xff writing, update headers.
_entries--;
EEPROM.write(static_cast<int>(sizeof(AC_IDENTIFIER)) - 1, _entries);
// commit it.
rc = EEPROM.commit();
delay(10);
EEPROM.end();
}
return rc;
}
/**
* Load the credential entry for the specified SSID from the EEPROM.
* The credentials are stored to the station_config structure which specified
* by *config as the SSID and password.
* @param ssid A SSID character string to be loaded.
* @param config A station_config structure pointer.
* @retval The entry number of the SSID in EEPROM. If the number less than 0,
* the specified SSID was not found.
*/
int8_t AutoConnectCredential::load(const char* ssid, struct station_config* config) {
int8_t entry = -1;
_dp = AC_HEADERSIZE;
if (_entries) {
EEPROM.begin(AC_HEADERSIZE + _containSize);
for (uint8_t i = 0; i < _entries; i++) {
_retrieveEntry(reinterpret_cast<char*>(config->ssid), reinterpret_cast<char*>(config->password), config->bssid);
if (!strcmp(ssid, (const char*)config->ssid)) {
entry = i;
break;
}
}
EEPROM.end();
}
return entry;
}
/**
* Load the credential entry for the specified number from the EEPROM.
* The credentials are stored to the station_config structure which specified
* by *config as the SSID and password.
* @param entry A number of entry to be loaded.
* @param config A station_config structure pointer.
* @retval true The entry number of the SSID in EEPROM.
* false The number is not available.
*/
bool AutoConnectCredential::load(int8_t entry, struct station_config* config) {
_dp = AC_HEADERSIZE;
if (_entries && entry < _entries) {
EEPROM.begin(AC_HEADERSIZE + _containSize);
while (entry-- >= 0)
_retrieveEntry(reinterpret_cast<char*>(config->ssid), reinterpret_cast<char*>(config->password), config->bssid);
EEPROM.end();
return true;
}
else {
return false;
}
}
/**
* Save SSID and password to EEPROM.
* When the same SSID already exists, it will be replaced. If the current
* entry size insufficient for the new entry, the entry will be appended
* and increase whole size. Its previous areas are freed with FF and reused.
* @param config A pointer to the station_config structure storing SSID and password.
* @retval true Successfully saved.
* @retval false EEPROM commit failed.
*/
bool AutoConnectCredential::save(const struct station_config* config) {
static const char _id[] = AC_IDENTIFIER;
struct station_config stage;
int8_t entry;
bool rep = false;
// Detect same entry for replacement.
entry = load((const char*)(config->ssid), &stage);
// Saving start.
EEPROM.begin(AC_HEADERSIZE + _containSize + sizeof(struct station_config));
// Determine insertion or replacement.
if (entry >= 0) {
// An entry with the same SSID was found, release the area for replacement.
_dp = _ep;
for (uint8_t dm = 2; dm; _dp++) {
if (EEPROM.read(_dp) == '\0')
dm--;
EEPROM.write(_dp, 0xff); // Clear SSID, Passphrase
}
for (uint8_t i = 0; i < sizeof(station_config::bssid); i++)
EEPROM.write(_dp++, 0xff); // Clear BSSID
}
else {
// Same entry not found. increase the entry.
_entries++;
int i;
for (i = AC_IDENTIFIER_OFFSET; i < static_cast<int>(sizeof(_id)) - 1; i++)
EEPROM.write(i, (uint8_t)_id[i]);
EEPROM.write(i, _entries);
}
// Seek insertion point, evaluate capacity to insert the new entry.
uint8_t eSize = strlen((const char*)config->ssid) + strlen((const char*)config->password) + sizeof(station_config::bssid) + 2;
for (_dp = AC_HEADERSIZE; _dp < _containSize + AC_HEADERSIZE; _dp++) {
if (EEPROM.read(_dp) == 0xff) {
uint8_t fp = _dp;
while (EEPROM.read(++_dp) == 0xff) {}
if (_dp - fp >= eSize) {
_dp = fp;
rep = true;
break;
}
_dp--;
}
}
// Save new entry
uint8_t c;
const uint8_t* dt;
dt = config->ssid;
do { // Write SSID
c = *dt++;
EEPROM.write(_dp++, c);
} while (c != '\0');
dt = config->password;
do { // Write password
c = *dt++;
EEPROM.write(_dp++, c);
} while (c != '\0');
for (uint8_t i = 0; i < sizeof(station_config::bssid); i++)
EEPROM.write(_dp++, config->bssid[i]); // write BSSID
// Terminate container, mark to the end of credential area.
// When the entry is replaced, not mark a terminator.
if (!rep) {
EEPROM.write(_dp, '\0');
// Update container size
_containSize = _dp - AC_HEADERSIZE;
EEPROM.write(sizeof(AC_IDENTIFIER) - 1 + sizeof(uint8_t), (uint8_t)_containSize);
EEPROM.write(sizeof(AC_IDENTIFIER) - 1 + sizeof(uint8_t) + 1, (uint8_t)(_containSize >> 8));
}
bool rc = EEPROM.commit();
delay(10);
EEPROM.end();
return rc;
}
/**
* Get the SSID and password from EEPROM indicated by _dp as the pointer
* of current read address. FF is skipped as unavailable area.
* @param ssid A SSID storing address.
* @param password A password storing address.
*/
void AutoConnectCredential::_retrieveEntry(char* ssid, char* password, uint8_t* bssid) {
uint8_t ec;
// Skip unavailable entry.
while ((ec = EEPROM.read(_dp++)) == 0xff) {}
// Retrieve SSID
_ep = _dp - 1;
*ssid++ = ec;
do {
ec = EEPROM.read(_dp++);
*ssid++ = ec;
} while (ec != '\0');
// Retrieve Password
do {
ec = EEPROM.read(_dp++);
*password++ = ec;
} while (ec != '\0');
// Retrieve BSSID
for (uint8_t i = 0; i < sizeof(station_config::bssid); i++) {
bssid[i] = EEPROM.read(_dp++);
}
}

@ -0,0 +1,49 @@
/**
* Declaration of AutoConnectCredential class.
* @file AutoConnectCredential.h
* @author hieromon@gmail.com
* @version 1.0.0
* @date 2018-02-17
* @copyright MIT license.
*/
#ifndef _AUTOCONNECTCREDENTAIL_H_
#define _AUTOCONNECTCREDENTAIL_H_
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
extern "C" {
#include <user_interface.h>
}
/** Credential storage area offset specifier in EEPROM.
* By defining AC_IDENTIFIER_OFFSET macro in the user sketch, the credential
* storage area can be shifted in EEPROM.
*/
#ifndef AC_IDENTIFIER_OFFSET
#define AC_IDENTIFIER_OFFSET 0
#endif
/** AutoConnectCredential class. */
class AutoConnectCredential {
public:
AutoConnectCredential();
~AutoConnectCredential();
uint8_t entries() { return _entries; }
bool del(const char* ssid);
int8_t load(const char* ssid, struct station_config* config);
bool load(int8_t entry, struct station_config* config);
bool save(const struct station_config* config);
private:
void _retrieveEntry(char* ssid, char* password, uint8_t* bssid); /**< Read an available entry. */
uint8_t _entries; /**< Count of the available entry */
uint16_t _containSize; /**< Container size */
int _dp; /**< The current address in EEPROM */
int _ep; /**< The current entry address in EEPROM */
};
#endif // _AUTOCONNECTCREDENTAIL_H_

File diff suppressed because it is too large Load Diff

@ -0,0 +1,71 @@
/**
* AutoConnect portal site web page declaration.
* @file AutoConnectPage.h
* @author hieromon@gmail.com
* @version 0.9.1
* @date 2018-02-13
* @copyright MIT license.
*/
#ifndef _AUTOCONNECTPAGE_H_
#define _AUTOCONNECTPAGE_H_
#define AUTOCONNECT_PARAMID_SSID "SSID"
#define AUTOCONNECT_PARAMID_PASS "Passphrase"
#define AUTOCONNECT_PARAMID_CRED "Credential"
// AutoConnect menu hyper-link as image
#define AUTOCONNECT_GLYPH_COG_24 "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAC2klEQVRIS61VvWsUQRSfmU2p" \
"on9BUIkQUaKFaCBKgooSb2d3NSSFKbQR/KrEIiIKBiGF2CgRxEpjQNHs7mwOUcghwUQ7g58I" \
"sbGxEBWsb2f8zR177s3t3S2cA8ftzPu993vzvoaSnMu2vRKlaqgKp74Q/tE8qjQPyHGcrUrR" \
"jwlWShmDbFMURd/a6TcQwNiYUmpFCPElUebcuQ2vz6aNATMVReHEPwzfSSntDcNwNo2rI+Dc" \
"vQzhpAbA40VKyV0p1Q9snzBG1qYVcYufXV1sREraDcxpyHdXgkfpRBj6Uwm2RsC5dxxmZ9pd" \
"OY9cKTISRcHTCmGiUCh4fYyplTwG2mAUbtMTBMHXOgK9QfyXEZr+TkgQ1oUwDA40hEgfIAfj" \
"+HuQRaBzAs9eKyUZ5Htx+T3ZODKG8DzOJMANhmGomJVMXPll+hx9UUAlzZrJJ4QNCDG3VEfg" \
"uu7mcpmcB/gkBOtShhQhchAlu5jlLUgc9ENgyP5gf9+y6LTv+58p5zySkgwzLNOIGc8sEoT1" \
"Lc53NMlbCQQuvMxeCME1NNPVVkmH/i3IzzXDtCSA0qQQwZWOCJDY50jsQRjJmkslEOxvTcDR" \
"O6zPxOh5xZglKkYLhWM9jMVnkIsTyMT6NBj7IbOCEjm6HxNVVTo2WXqEWJZ1T8rytB6Gxizy" \
"DkPhWVpBqfiXUtbo/HywYJSpA9kMamNNPZ71R9Hcm+TMHHZNGw3EuraXEUldbfvw25UdOjqO" \
"t+JhMwJd7+jSTpZaEiIcaCDwPK83jtWnTkwnunFMtxeL/ge9r4XItt1RNNaj/0GAcV2bR3U5" \
"sG3nEh6M61US+Qrfd9Bs31GGulI2GOS/8dgcQZV1w+ApjIxB7TDwF9GcNzJzoA+rD0/8HvPn" \
"XQJCt2qFCwbBTfRI7UyXumWVt+HJ9NO4XI++bdsb0YyrqXmlh+AWOLHaLqS5CLQR5EggR3Yl" \
"cVS9gKeH2hnX8r8Kmi1CAsl36QAAAABJRU5ErkJggg=="
#define AUTOCONNECT_GLYPH_COG_32 "iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAETElEQVRYR61XX0hbVxg/5yYx" \
"QlEnzM46HYw+7KVuq826Vba1UIRmevNHltHCZEKn7g9lLzJwD8W+dAXZy6i2jaV92BRcMZpc" \
"g7Q+zLaTPXQb7E9toaCUwVbWOZlBk5jcc/Y7WCW5uffuXNvAJSH3933f73zn933nO5Rs4xMI" \
"BN4kRLlebMpeSiQSvzh1R50aCHwgEPoGX5FiWz6cSMS7nfpzTACrr8Pq7yOQ2xBsTddz9clk" \
"ctkJCVMCoVBoP2P8bcbcw1NT4/cKHapq8BSl9KRFkN5EYvKLwnfw9TJjrJtz90VNi/1ktCsh" \
"IILrOrtGqVIlwJyTWQS84PW6Y+l0ukZRXD8QQmstCCzmcp5X0+kdqaqq5Xdg+yGwrz3CLisK" \
"aZmcnPyx0LaIgKq2v0JIfmYzuCHIMlZSqYCBXYqBWQdmFZhqE1wJiSICwWBoEKw/crKH28B+" \
"jm36bNOuiAAE9iIE9vM2nMqacM713ZqmLZoSEH+2tYXmsFfNsh4d4q5i9UcsNfCoxt/F91cO" \
"HUvBKeXt8Xh8wpaA3+/3ejzePy1EJOoiw7lyjlJ9NJPJ3Flfr9MrKlYaFYV1oHp6IMAyczb8" \
"wcrKvw2zs7N5WwKqqj7HOV0wUztWcB8qb8Ue3jYLgipqArGkWZnCLo39f9bYqLZE6PdHatzu" \
"9S4EQe0q9cYAwoHLRX1I4bxdviFkH+y/B8bYKQlj5A/oK+p2K9FYLCayTCgazz68OIHfR/F4" \
"rZ3zAfT6T2U2W1XD57GQHissFpMDEaGFQYqDhcs4JUT+tAOB10HgpoxfWQK8tnanNxqN5mSc" \
"tra2Vrtcnn9ksFIEkDLm8zV5+vv7mYzTJ05ABIWC91ip30gqGAy+gUq6IUOWtrWFD6CGP8bx" \
"G7GuYUGAn9G0eJ+M00AgGIW+u2ywa/A4gufsVhmGw+Gd+Tx7H8w/gEIbTIzXOHft07Txu3Yk" \
"NmYJMmdWhhDyAkp0CIPLpc1+UDIPIH0Nus4XrRoRHL9l1QvEcU4p04B5xoQkjmi2C3NjyrYT" \
"RiKRsmw29wAgs/NcqCGD9A6hHY+kUpXzFRVL4Ko0Yovew+pE2ksakAgIHf9VV1dbb6ykkgyo" \
"augYpWRUZq+dYtAbjiJ7Y7YZAIFvQeCQU+cyeFEZmjZx0JIA+vgLSKOtyGQC2WGM5WwYycID" \
"2Mvexw1iT4B/iXL+ZBNjHMl8jCkzKMOnjE4goiX8J4ZSz/8QRI0ToXSzSvgbcjxceIMqEaE4" \
"TotJsO+g+KHycs94NputxrtbFn2CiHkhn8/vXV1dTVVWVgdQkj3Y9xaQQRz2EOP9YYjwV1sR" \
"ipcbZzrt1HXlfDI58VuhAU5P0Q1Pm2UBAfowcZ0pfIcB53no6jhIjxmDC5zjqxkcPo17w+8w" \
"LTeQyOJS0jA9feWhEw05JiCc4/5wGfeHzuJA7GvsbYeT4NvKgDDamP1Y0RWLMdo8NTUhRjFH" \
"n/8AoRLGHM6hJDMAAAAASUVORK5CYII="
#define AUTOCONNECT_GLYPH_BAR_32 "iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAApklEQVRYR2NkGGDAOMD2M4w6" \
"YDQEkEMgEJggZwCxGI0T5mug+alAvBFkD7IDXtLBcpjfXgEZ4ugOeAETpHEIgIwHeVYC3QH+" \
"0CgAS9AQgCwHRcFmdAfQ0E7cRo9mw0EVAqPlAKhwEKVTVsBZDsyiQ2k4Wg6gxPKgyoZ0Sn+o" \
"1iCHQBBQaiYQi9DYJTjbAyAJWluOtz0wWg7QOOqxGz+aDUdDYMBDAACA0x4hs/MPrwAAAABJ" \
"RU5ErkJggg=="
#define AUTOCONNECT_GLYPH_BAR_48 "iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAABIUlEQVRoQ+1YywrCQBCzF72J" \
"fqD6AYKKIPgLKiKKd/1DH0dPpgdBilvtTMp2JcJcLMnsJNtu2qyV+C9LfP0tDRDbQTkgB5wK" \
"aAs5BXTDiw50wLhGDVE9NzuX4A66M2qBeryoiwPscWHC7UtnO4BxGhrg0kDliwpc8Uf/bwfY" \
"YbIZ3XQuYb7GeciBNi6sUKN3m7j9zWz51jmhlmU3sZk9FlAHWSzlQ/dA7PVU7q8tVFkyMuBT" \
"FtqixwDVJffy0v2UhY7oMvZ2qhlfmoVuDVS+UhZKfoAU4vTXLLSBZ018oVEWqvnhYqPXSWzT" \
"jYeSAzwtbUzKQjbdXChlIZd8BHDphy1lIYLCIQploRrFtVPrJLZrx0HKAY6OdhY5YNeOg0ze" \
"gScMDDAxQXzA7QAAAABJRU5ErkJggg=="
// AutoConnect menu href
#define AUTOCONNECT_LINK(s) "<a href=\"" AUTOCONNECT_URI "\"><img src=\"data:image/png;base64," AUTOCONNECT_GLYPH_ ##s "\" border=\"0\" title=\"AutoConnect menu\" alt=\"AutoConnect menu\"/></a>"
#endif // _AutoConnectPage_H_
Loading…
Cancel
Save