XAsyncSockets
XAsyncSockets copied to clipboard
XAsyncSockets is an efficient Python/MicroPython library of managed asynchronous sockets.
Results
2
XAsyncSockets issues
Sort by
recently updated
recently updated
newest added
I modified it(tcpCli.py): ``` countClosed = 0 pool = XAsyncSocketsPool() srvAddr = ('192.168.0.190', 8090) for i in range(1) : cli = XAsyncTCPClient.Create(pool, srvAddr,5,4096,4096,False) if cli : print("Client %s created" %...
This code is using `uselect.select()` to block for events. However, I want to run the code under the Unix port of micropython (and esp32). That port doesn't provide the select...