[PR #794] [CLOSED] Change the web server and tcp to be async #1682

Closed
opened 2026-02-28 02:12:38 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/tzapu/WiFiManager/pull/794
Author: @bwssytems
Created: 12/27/2018
Status: Closed

Base: masterHead: ConvertToAsync


📝 Commits (10+)

📊 Changes

31 files changed (+5253 additions, -1148 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE.md (+4 -17)
.gitignore (+1 -0)
📝 .travis.yml (+32 -13)
📝 README.md (+215 -62)
📝 WiFiManager.cpp (+2915 -619)
📝 WiFiManager.h (+375 -104)
examples/Advanced/Advanced.ino (+133 -0)
examples/AutoConnect/AutoConnect.ino (+0 -38)
📝 examples/AutoConnect/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino (+76 -58)
📝 examples/AutoConnect/AutoConnectWithFSParametersAndCustomIP/AutoConnectWithFSParametersAndCustomIP.ino (+52 -69)
📝 examples/AutoConnect/AutoConnectWithFeedbackLED/AutoConnectWithFeedbackLED.ino (+11 -14)
examples/Basic/Basic.ino (+37 -0)
examples/DEV/OnDemandConfigPortal/OnDemandConfigPortal.ino (+208 -0)
examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino (+26 -0)
examples/NonBlocking/AutoConnectNonBlockingwParams/AutoConnectNonBlockingwParams.ino (+35 -0)
examples/NonBlocking/OnDemandNonBlocking/onDemandNonBlocking.ino (+63 -0)
📝 examples/Old_examples/AutoConnectWithFeedback/AutoConnectWithFeedback.ino (+2 -7)
📝 examples/Old_examples/AutoConnectWithReset/AutoConnectWithReset.ino (+3 -9)
📝 examples/Old_examples/AutoConnectWithStaticIP/AutoConnectWithStaticIP.ino (+4 -13)
📝 examples/Old_examples/AutoConnectWithTimeout/AutoConnectWithTimeout.ino (+3 -10)

...and 11 more files

📄 Description

Changed the sub system to use the ESPAsyncWebServer and AsyncTCP. Allows for better TCP handling.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/tzapu/WiFiManager/pull/794 **Author:** [@bwssytems](https://github.com/bwssytems) **Created:** 12/27/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `ConvertToAsync` --- ### 📝 Commits (10+) - [`32e51ea`](https://github.com/tzapu/WiFiManager/commit/32e51ea37ba8be585da591bd69f762b590cc48be) notes - [`29edaed`](https://github.com/tzapu/WiFiManager/commit/29edaed0e7c24b10902c13ca865968a0b039f9e8) fixes #555 oops - [`278c320`](https://github.com/tzapu/WiFiManager/commit/278c320e2283ffa37a4f2aa66e307e1893919e89) added debug levels - [`21f1016`](https://github.com/tzapu/WiFiManager/commit/21f1016d89bd90f0bdf7e6f1ddede4d17c018eaa) add esp shields - [`3378a4a`](https://github.com/tzapu/WiFiManager/commit/3378a4a8462aafb8f5c9c7f1618688d4c478201c) Update README.md - [`36840fc`](https://github.com/tzapu/WiFiManager/commit/36840fc7129f7f699d4581f4ce6da66aa18d971b) add WM_RTC def for rtc.h - [`84752d8`](https://github.com/tzapu/WiFiManager/commit/84752d80271c6b9f9281f45b61825b3529b0e4c2) Merge branch 'development' of https://github.com/tzapu/WiFiManager into development - [`81045e6`](https://github.com/tzapu/WiFiManager/commit/81045e643346232999af44aee4a63e734900e199) Added Custom DNS, fix newlines - [`3cc1fab`](https://github.com/tzapu/WiFiManager/commit/3cc1fabae702025dcb6de51c510ff3927b0c395d) fix tabs - [`109dfa5`](https://github.com/tzapu/WiFiManager/commit/109dfa5c5807f94ff5bffa94c91ef36da7b45dd0) Merge pull request #561 from tzapu/pr560 ### 📊 Changes **31 files changed** (+5253 additions, -1148 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE.md` (+4 -17) ➕ `.gitignore` (+1 -0) 📝 `.travis.yml` (+32 -13) 📝 `README.md` (+215 -62) 📝 `WiFiManager.cpp` (+2915 -619) 📝 `WiFiManager.h` (+375 -104) ➕ `examples/Advanced/Advanced.ino` (+133 -0) ➖ `examples/AutoConnect/AutoConnect.ino` (+0 -38) 📝 `examples/AutoConnect/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino` (+76 -58) 📝 `examples/AutoConnect/AutoConnectWithFSParametersAndCustomIP/AutoConnectWithFSParametersAndCustomIP.ino` (+52 -69) 📝 `examples/AutoConnect/AutoConnectWithFeedbackLED/AutoConnectWithFeedbackLED.ino` (+11 -14) ➕ `examples/Basic/Basic.ino` (+37 -0) ➕ `examples/DEV/OnDemandConfigPortal/OnDemandConfigPortal.ino` (+208 -0) ➕ `examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino` (+26 -0) ➕ `examples/NonBlocking/AutoConnectNonBlockingwParams/AutoConnectNonBlockingwParams.ino` (+35 -0) ➕ `examples/NonBlocking/OnDemandNonBlocking/onDemandNonBlocking.ino` (+63 -0) 📝 `examples/Old_examples/AutoConnectWithFeedback/AutoConnectWithFeedback.ino` (+2 -7) 📝 `examples/Old_examples/AutoConnectWithReset/AutoConnectWithReset.ino` (+3 -9) 📝 `examples/Old_examples/AutoConnectWithStaticIP/AutoConnectWithStaticIP.ino` (+4 -13) 📝 `examples/Old_examples/AutoConnectWithTimeout/AutoConnectWithTimeout.ino` (+3 -10) _...and 11 more files_ </details> ### 📄 Description Changed the sub system to use the ESPAsyncWebServer and AsyncTCP. Allows for better TCP handling. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 02:12:38 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/WiFiManager#1682
No description provided.