me-no-dev / AsyncTCP

Async TCP Library for ESP32
GNU Lesser General Public License v3.0
714 stars 426 forks source link

Serial to TCP Client #141

Closed AzmFarm closed 2 years ago

AzmFarm commented 2 years ago

Whether the library allows you to send data from the UART buffer to the TCP Client. Part of the code: while (Serial2.available() > 0) { char c = Serial2.read(); sprintf(send, "%c", c); Serial.print(send); client->write(send); }

Currently data from UART buffer to TCP Client is sent only after TCP Client event processing.

stale[bot] commented 2 years ago

[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.

stale[bot] commented 2 years ago

[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.