├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── changelog.md ├── esp32c3_ESPAsyncWebServer_Patch ├── AsyncWebSocket.cpp └── WebAuthentication.cpp ├── esp32s2_WebServer_Patch ├── WebServer.cpp └── WebServer.h ├── examples ├── ESPAsync_WiFi │ ├── Credentials.h │ ├── ESPAsync_WiFi.ino │ ├── defines.h │ └── dynamicParams.h └── ESPAsync_WiFi_MQTT │ ├── Credentials.h │ ├── ESPAsync_WiFi_MQTT.ino │ ├── defines.h │ └── dynamicParams.h ├── keywords.txt ├── library.json ├── library.properties ├── pics ├── Input.png ├── Input_With_Scan.png ├── MQTT.png ├── Main.png └── Save.png ├── platformio └── platformio.ini ├── src ├── ESPAsync_WiFiManager_Lite.h └── ESPAsync_WiFiManager_Lite_Debug.h └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/changelog.md -------------------------------------------------------------------------------- /esp32c3_ESPAsyncWebServer_Patch/AsyncWebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/esp32c3_ESPAsyncWebServer_Patch/AsyncWebSocket.cpp -------------------------------------------------------------------------------- /esp32c3_ESPAsyncWebServer_Patch/WebAuthentication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/esp32c3_ESPAsyncWebServer_Patch/WebAuthentication.cpp -------------------------------------------------------------------------------- /esp32s2_WebServer_Patch/WebServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/esp32s2_WebServer_Patch/WebServer.cpp -------------------------------------------------------------------------------- /esp32s2_WebServer_Patch/WebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/esp32s2_WebServer_Patch/WebServer.h -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi/Credentials.h -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi/ESPAsync_WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi/ESPAsync_WiFi.ino -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi/defines.h -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi/dynamicParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi/dynamicParams.h -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi_MQTT/Credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi_MQTT/Credentials.h -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi_MQTT/ESPAsync_WiFi_MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi_MQTT/ESPAsync_WiFi_MQTT.ino -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi_MQTT/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi_MQTT/defines.h -------------------------------------------------------------------------------- /examples/ESPAsync_WiFi_MQTT/dynamicParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/examples/ESPAsync_WiFi_MQTT/dynamicParams.h -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/library.properties -------------------------------------------------------------------------------- /pics/Input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/pics/Input.png -------------------------------------------------------------------------------- /pics/Input_With_Scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/pics/Input_With_Scan.png -------------------------------------------------------------------------------- /pics/MQTT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/pics/MQTT.png -------------------------------------------------------------------------------- /pics/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/pics/Main.png -------------------------------------------------------------------------------- /pics/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/pics/Save.png -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/ESPAsync_WiFiManager_Lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/src/ESPAsync_WiFiManager_Lite.h -------------------------------------------------------------------------------- /src/ESPAsync_WiFiManager_Lite_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/src/ESPAsync_WiFiManager_Lite_Debug.h -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/ESPAsync_WiFiManager_Lite/HEAD/utils/restyle.sh --------------------------------------------------------------------------------