├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── check-arduino.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── Images ├── Configuration.png ├── Configuration_AIO_MQTT.png ├── Configuration_ESP32.png ├── Configuration_Standard.png ├── Info.png ├── Info_ESP32.png ├── Info_Short.png ├── Main.png ├── Main_ESP32.png ├── Saved.png └── WiFiSave.png ├── LICENSE ├── README.md ├── changelog.md ├── esp32c3_ESPAsyncWebServer_Patch ├── AsyncWebSocket.cpp └── WebAuthentication.cpp ├── esp32s2_WebServer_Patch ├── WebServer.cpp └── WebServer.h ├── examples ├── Async_AutoConnect │ └── Async_AutoConnect.ino ├── Async_AutoConnectWithFSParameters │ └── Async_AutoConnectWithFSParameters.ino ├── Async_AutoConnectWithFSParametersAndCustomIP │ └── Async_AutoConnectWithFSParametersAndCustomIP.ino ├── Async_AutoConnectWithFeedback │ └── Async_AutoConnectWithFeedback.ino ├── Async_AutoConnectWithFeedbackLED │ └── Async_AutoConnectWithFeedbackLED.ino ├── Async_ConfigOnDRD_FS_MQTT_Ptr │ └── Async_ConfigOnDRD_FS_MQTT_Ptr.ino ├── Async_ConfigOnDRD_FS_MQTT_Ptr_Complex │ └── Async_ConfigOnDRD_FS_MQTT_Ptr_Complex.ino ├── Async_ConfigOnDRD_FS_MQTT_Ptr_Medium │ └── Async_ConfigOnDRD_FS_MQTT_Ptr_Medium.ino ├── Async_ConfigOnDoubleReset │ └── Async_ConfigOnDoubleReset.ino ├── Async_ConfigOnDoubleReset_Multi │ ├── Async_ConfigOnDoubleReset_Multi.cpp │ ├── Async_ConfigOnDoubleReset_Multi.h │ └── Async_ConfigOnDoubleReset_Multi.ino ├── Async_ConfigOnDoubleReset_TZ │ └── Async_ConfigOnDoubleReset_TZ.ino ├── Async_ConfigOnStartup │ └── Async_ConfigOnStartup.ino ├── Async_ConfigOnSwitch │ ├── Async_ConfigOnSwitch.ino │ └── README.md ├── Async_ConfigOnSwitchFS │ └── Async_ConfigOnSwitchFS.ino ├── Async_ConfigOnSwitchFS_MQTT_Ptr │ └── Async_ConfigOnSwitchFS_MQTT_Ptr.ino ├── Async_ConfigPortalParamsOnSwitch │ └── Async_ConfigPortalParamsOnSwitch.ino ├── Async_ESP32_FSWebServer │ ├── Async_ESP32_FSWebServer.ino │ ├── README.md │ ├── data │ │ ├── CanadaFlag_1.png │ │ ├── CanadaFlag_2.png │ │ ├── CanadaFlag_3.jpg │ │ ├── edit.htm.gz │ │ ├── favicon.ico │ │ ├── graphs.js.gz │ │ └── index.htm │ └── pics │ │ ├── async-esp32fs.local.png │ │ └── async-esp32fs.local_edit.png ├── Async_ESP32_FSWebServer_DRD │ ├── Async_ESP32_FSWebServer_DRD.ino │ ├── README.md │ ├── data │ │ ├── CanadaFlag_1.png │ │ ├── CanadaFlag_2.png │ │ ├── CanadaFlag_3.jpg │ │ ├── edit.htm.gz │ │ ├── favicon.ico │ │ ├── graphs.js.gz │ │ └── index.htm │ └── pics │ │ ├── async-esp32fs.local.png │ │ └── async-esp32fs.local_edit.png ├── Async_ESP_FSWebServer │ ├── Async_ESP_FSWebServer.ino │ ├── README.md │ ├── data │ │ ├── CanadaFlag_1.png │ │ ├── CanadaFlag_2.png │ │ ├── CanadaFlag_3.jpg │ │ ├── edit.htm.gz │ │ ├── favicon.ico │ │ ├── graphs.js.gz │ │ └── index.htm │ └── pics │ │ ├── async-esp8266fs.local.png │ │ └── async-esp8266fs.local_edit.png └── Async_ESP_FSWebServer_DRD │ ├── Async_ESP_FSWebServer_DRD.ino │ ├── README.md │ ├── data │ ├── CanadaFlag_1.png │ ├── CanadaFlag_2.png │ ├── CanadaFlag_3.jpg │ ├── edit.htm.gz │ ├── favicon.ico │ ├── graphs.js.gz │ └── index.htm │ └── pics │ ├── async-esp8266fs.local.png │ ├── async-esp8266fs.local_edit.png │ ├── esp8266fs.local.png │ └── esp8266fs.local_edit.png ├── keywords.txt ├── library.json ├── library.properties ├── platformio └── platformio.ini ├── src ├── ESPAsync_WiFiManager-Impl.h ├── ESPAsync_WiFiManager.h ├── ESPAsync_WiFiManager.hpp ├── ESPAsync_WiFiManager_Debug.h └── utils │ └── TZ.h ├── travis └── common.sh └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Images/Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Configuration.png -------------------------------------------------------------------------------- /Images/Configuration_AIO_MQTT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Configuration_AIO_MQTT.png -------------------------------------------------------------------------------- /Images/Configuration_ESP32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Configuration_ESP32.png -------------------------------------------------------------------------------- /Images/Configuration_Standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Configuration_Standard.png -------------------------------------------------------------------------------- /Images/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Info.png -------------------------------------------------------------------------------- /Images/Info_ESP32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Info_ESP32.png -------------------------------------------------------------------------------- /Images/Info_Short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Info_Short.png -------------------------------------------------------------------------------- /Images/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Main.png -------------------------------------------------------------------------------- /Images/Main_ESP32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Main_ESP32.png -------------------------------------------------------------------------------- /Images/Saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/Saved.png -------------------------------------------------------------------------------- /Images/WiFiSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/Images/WiFiSave.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/changelog.md -------------------------------------------------------------------------------- /esp32c3_ESPAsyncWebServer_Patch/AsyncWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/esp32c3_ESPAsyncWebServer_Patch/AsyncWebSocket.cpp -------------------------------------------------------------------------------- /esp32c3_ESPAsyncWebServer_Patch/WebAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/esp32c3_ESPAsyncWebServer_Patch/WebAuthentication.cpp -------------------------------------------------------------------------------- /esp32s2_WebServer_Patch/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/esp32s2_WebServer_Patch/WebServer.cpp -------------------------------------------------------------------------------- /esp32s2_WebServer_Patch/WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/esp32s2_WebServer_Patch/WebServer.h -------------------------------------------------------------------------------- /examples/Async_AutoConnect/Async_AutoConnect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_AutoConnect/Async_AutoConnect.ino -------------------------------------------------------------------------------- /examples/Async_AutoConnectWithFSParameters/Async_AutoConnectWithFSParameters.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_AutoConnectWithFSParameters/Async_AutoConnectWithFSParameters.ino -------------------------------------------------------------------------------- /examples/Async_AutoConnectWithFSParametersAndCustomIP/Async_AutoConnectWithFSParametersAndCustomIP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_AutoConnectWithFSParametersAndCustomIP/Async_AutoConnectWithFSParametersAndCustomIP.ino -------------------------------------------------------------------------------- /examples/Async_AutoConnectWithFeedback/Async_AutoConnectWithFeedback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_AutoConnectWithFeedback/Async_AutoConnectWithFeedback.ino -------------------------------------------------------------------------------- /examples/Async_AutoConnectWithFeedbackLED/Async_AutoConnectWithFeedbackLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_AutoConnectWithFeedbackLED/Async_AutoConnectWithFeedbackLED.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnDRD_FS_MQTT_Ptr/Async_ConfigOnDRD_FS_MQTT_Ptr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDRD_FS_MQTT_Ptr/Async_ConfigOnDRD_FS_MQTT_Ptr.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnDRD_FS_MQTT_Ptr_Complex/Async_ConfigOnDRD_FS_MQTT_Ptr_Complex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDRD_FS_MQTT_Ptr_Complex/Async_ConfigOnDRD_FS_MQTT_Ptr_Complex.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnDRD_FS_MQTT_Ptr_Medium/Async_ConfigOnDRD_FS_MQTT_Ptr_Medium.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDRD_FS_MQTT_Ptr_Medium/Async_ConfigOnDRD_FS_MQTT_Ptr_Medium.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnDoubleReset/Async_ConfigOnDoubleReset.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDoubleReset/Async_ConfigOnDoubleReset.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnDoubleReset_Multi/Async_ConfigOnDoubleReset_Multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDoubleReset_Multi/Async_ConfigOnDoubleReset_Multi.cpp -------------------------------------------------------------------------------- /examples/Async_ConfigOnDoubleReset_Multi/Async_ConfigOnDoubleReset_Multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDoubleReset_Multi/Async_ConfigOnDoubleReset_Multi.h -------------------------------------------------------------------------------- /examples/Async_ConfigOnDoubleReset_Multi/Async_ConfigOnDoubleReset_Multi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDoubleReset_Multi/Async_ConfigOnDoubleReset_Multi.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnDoubleReset_TZ/Async_ConfigOnDoubleReset_TZ.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnDoubleReset_TZ/Async_ConfigOnDoubleReset_TZ.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnStartup/Async_ConfigOnStartup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnStartup/Async_ConfigOnStartup.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnSwitch/Async_ConfigOnSwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnSwitch/Async_ConfigOnSwitch.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnSwitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnSwitch/README.md -------------------------------------------------------------------------------- /examples/Async_ConfigOnSwitchFS/Async_ConfigOnSwitchFS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnSwitchFS/Async_ConfigOnSwitchFS.ino -------------------------------------------------------------------------------- /examples/Async_ConfigOnSwitchFS_MQTT_Ptr/Async_ConfigOnSwitchFS_MQTT_Ptr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigOnSwitchFS_MQTT_Ptr/Async_ConfigOnSwitchFS_MQTT_Ptr.ino -------------------------------------------------------------------------------- /examples/Async_ConfigPortalParamsOnSwitch/Async_ConfigPortalParamsOnSwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ConfigPortalParamsOnSwitch/Async_ConfigPortalParamsOnSwitch.ino -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/Async_ESP32_FSWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/Async_ESP32_FSWebServer.ino -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/README.md -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/CanadaFlag_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/CanadaFlag_1.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/CanadaFlag_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/CanadaFlag_2.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/CanadaFlag_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/CanadaFlag_3.jpg -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/edit.htm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/edit.htm.gz -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/favicon.ico -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/graphs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/graphs.js.gz -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/data/index.htm -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/pics/async-esp32fs.local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/pics/async-esp32fs.local.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer/pics/async-esp32fs.local_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer/pics/async-esp32fs.local_edit.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/Async_ESP32_FSWebServer_DRD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/Async_ESP32_FSWebServer_DRD.ino -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/README.md -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/CanadaFlag_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/CanadaFlag_1.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/CanadaFlag_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/CanadaFlag_2.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/CanadaFlag_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/CanadaFlag_3.jpg -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/edit.htm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/edit.htm.gz -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/favicon.ico -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/graphs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/graphs.js.gz -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/data/index.htm -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local.png -------------------------------------------------------------------------------- /examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP32_FSWebServer_DRD/pics/async-esp32fs.local_edit.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/Async_ESP_FSWebServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/Async_ESP_FSWebServer.ino -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/README.md -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/CanadaFlag_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/CanadaFlag_1.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/CanadaFlag_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/CanadaFlag_2.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/CanadaFlag_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/CanadaFlag_3.jpg -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/edit.htm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/edit.htm.gz -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/favicon.ico -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/graphs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/graphs.js.gz -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/data/index.htm -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer/pics/async-esp8266fs.local_edit.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/Async_ESP_FSWebServer_DRD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/Async_ESP_FSWebServer_DRD.ino -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/README.md -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/CanadaFlag_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/CanadaFlag_1.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/CanadaFlag_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/CanadaFlag_2.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/CanadaFlag_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/CanadaFlag_3.jpg -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/edit.htm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/edit.htm.gz -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/favicon.ico -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/graphs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/graphs.js.gz -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/data/index.htm -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/pics/async-esp8266fs.local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/pics/async-esp8266fs.local.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/pics/async-esp8266fs.local_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/pics/async-esp8266fs.local_edit.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/pics/esp8266fs.local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/pics/esp8266fs.local.png -------------------------------------------------------------------------------- /examples/Async_ESP_FSWebServer_DRD/pics/esp8266fs.local_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/examples/Async_ESP_FSWebServer_DRD/pics/esp8266fs.local_edit.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/library.properties -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/ESPAsync_WiFiManager-Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/src/ESPAsync_WiFiManager-Impl.h -------------------------------------------------------------------------------- /src/ESPAsync_WiFiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/src/ESPAsync_WiFiManager.h -------------------------------------------------------------------------------- /src/ESPAsync_WiFiManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/src/ESPAsync_WiFiManager.hpp -------------------------------------------------------------------------------- /src/ESPAsync_WiFiManager_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/src/ESPAsync_WiFiManager_Debug.h -------------------------------------------------------------------------------- /src/utils/TZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/src/utils/TZ.h -------------------------------------------------------------------------------- /travis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/travis/common.sh -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager/HEAD/utils/restyle.sh --------------------------------------------------------------------------------