You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2025. It is now read-only.
For ESP32 look [https://github.com/ESP32Async/AsyncTCP](https://github.com/ESP32Async/AsyncTCP)
8
+
9
+
This is a fully asynchronous TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP8266 MCUs.
10
+
11
+
This library is the base for [https://github.com/ESP32Async/ESPAsyncWebServer](https://github.com/ESP32Async/ESPAsyncWebServer)
12
+
13
+
## AsyncClient and AsyncServer
14
+
The base classes on which everything else is built. They expose all possible scenarios, but are really raw and require more skills to use.
15
+
16
+
## AsyncPrinter
17
+
This class can be used to send data like any other ```Print``` interface (```Serial``` for example).
18
+
The object then can be used outside of the Async callbacks (the loop) and receive asynchronously data using ```onData```. The object can be checked if the underlying ```AsyncClient```is connected, or hook to the ```onDisconnect``` callback.
19
+
20
+
## AsyncTCPbuffer
21
+
This class is really similar to the ```AsyncPrinter```, but it differs in the fact that it can buffer some of the incoming data.
22
+
23
+
## SyncClient
24
+
It is exactly what it sounds like. This is a standard, blocking TCP Client, similar to the one included in ```ESP8266WiFi```
25
+
26
+
## Libraries and projects that use AsyncTCP
27
+
-[ESP Async Web Server](https://github.com/ESP32Async/ESPAsyncWebServer)
#Project moved to [ESP32Async](https://github.com/organizations/ESP32Async) organization at [https://github.com/ESP32Async/ESPAsyncTCP](https://github.com/ESP32Async/ESPAsyncTCP)
5
4
6
-
For ESP32 look [HERE](https://github.com/me-no-dev/AsyncTCP)
[](https://gitter.im/me-no-dev/ESPAsyncWebServer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7
+
Please see the new links:
9
8
10
-
This is a fully asynchronous TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP8266 MCUs.
11
-
12
-
This library is the base for [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer)
13
-
14
-
## AsyncClient and AsyncServer
15
-
The base classes on which everything else is built. They expose all possible scenarios, but are really raw and require more skills to use.
16
-
17
-
## AsyncPrinter
18
-
This class can be used to send data like any other ```Print``` interface (```Serial``` for example).
19
-
The object then can be used outside of the Async callbacks (the loop) and receive asynchronously data using ```onData```. The object can be checked if the underlying ```AsyncClient```is connected, or hook to the ```onDisconnect``` callback.
20
-
21
-
## AsyncTCPbuffer
22
-
This class is really similar to the ```AsyncPrinter```, but it differs in the fact that it can buffer some of the incoming data.
23
-
24
-
## SyncClient
25
-
It is exactly what it sounds like. This is a standard, blocking TCP Client, similar to the one included in ```ESP8266WiFi```
26
-
27
-
## Libraries and projects that use AsyncTCP
28
-
-[ESP Async Web Server](https://github.com/me-no-dev/ESPAsyncWebServer)
0 commit comments