Closed amimberg closed 3 years ago
Hi @andmim, Sorry for delayed reply, I have been quite busy working on another project.
To workaround this problem go into WebSocketClient.cpp and replace _readFrame()
with:
if (m_client.available()) _readFrame();
This is not the final solution though, I have some failed tests. Once I figure it out I'll let you know and update master branch.
@andmim The problem has been resolved with the latest commit to master branch (all tests green). (I will close this issue in the next month).
Looks like a dead issue.
Good evening,
I am trying to use your library to connect my ESP32 and a W5500 to my server which is running a node.js script to receive sensor data. The connection is established successfully, however the
listen()
function is taking up a lot of time in my main.From my Serial output, my loop is being blocked for 5 Seconds.
Is there anything I am missing, or do you have any other idea what may be causing it to take so long? I only found #10, but unfortunately, there was no resolution to that problem.
Best regards.