Lokálně udržovaná verze ESPAsyncTCP knihovny, používaná ve všech projektech s ESP8266
Go to file
Pavel Brychta a2ab207446 Fix https://github.com/me-no-dev/ESPAsyncTCP/pull/138 2023-02-04 18:38:43 +01:00
examples Verze s opravou unacked 2020-08-21 12:30:50 +02:00
src Fix https://github.com/me-no-dev/ESPAsyncTCP/pull/138 2023-02-04 18:38:43 +01:00
ssl Verze s opravou unacked 2020-08-21 12:30:50 +02:00
LICENSE.txt Verze s opravou unacked 2020-08-21 12:30:50 +02:00
README.md Odkaz na zdroj 2020-08-21 12:38:17 +02:00
library.json Aktualizace na verzi 1.2.3 2021-01-11 10:11:38 +01:00
library.properties Aktualizace na verzi 1.2.3 2021-01-11 10:11:38 +01:00

README.md

ESPAsyncTCP

Lokálně udržovaná verze ESPAsyncTCP knihovny, používaná ve všech projektech s ESP8266, postavena na https://github.com/OttoWinter/ESPAsyncTCP

A fork of the AsyncTCP library by @me-no-dev for ESPHome.

Async TCP Library for ESP8266 Arduino

This is a fully asynchronous TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP8266 MCUs.

This library is the base for ESPAsyncWebServer

AsyncClient and AsyncServer

The base classes on which everything else is built. They expose all possible scenarios, but are really raw and require more skills to use.

AsyncPrinter

This class can be used to send data like any other Print interface (Serial for example). 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 AsyncClientis connected, or hook to the onDisconnect callback.

AsyncTCPbuffer

This class is really similar to the AsyncPrinter, but it differs in the fact that it can buffer some of the incoming data.

SyncClient

It is exactly what it sounds like. This is a standard, blocking TCP Client, similar to the one included in ESP8266WiFi