Python TCP server to communicate with ESP32

前端 未结 0 991
不知归路
不知归路 2020-12-31 16:48

I have a python server running with the code,

import socket

s = socket.socket()

s.bind((\'192.168.1.11\', 5000))
s.listen(0)

while True:

    client, addr          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题