dgram
dgram copied to clipboard
Async UDP server in Micropython using the new uasyncio lib
Results
2
dgram issues
Sort by
recently updated
recently updated
newest added
internal variable: `self.max_packet` declared in class UDPServer is never used. Probably instead of: ` buf, addr = s.recvfrom(MAX_PACKET_SIZE) ` should be: ` buf, addr = s.recvfrom(self.max_packet) `
Hi @perbu, Thanks for making this code available to the world. I saw that you closed [your issue](https://github.com/micropython/micropython/issues/5900) in micropython after nobody responded for a while. That's a shame because...