树莓派TCP通信

Posted kekeoutlook

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了树莓派TCP通信相关的知识,希望对你有一定的参考价值。

 

 

#https://blog.csdn.net/qq_41204464/article/details/83446394
import socket
import time
 
HOST = ‘192.168.43.242‘
PORT = 8266
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
sock.bind((HOST, PORT))  
sock.listen(5)  
while True:  
    connection,address = sock.accept()
    print (‘IP Address:‘+ str(address))
    try:  
        connection.settimeout(10)  
        buf = connection.recv(1024)
        print(buf)
       
    except socket.timeout:  
        print (‘time out‘)
    connection.close()  

  

以上是关于树莓派TCP通信的主要内容,如果未能解决你的问题,请参考以下文章

树莓派小车By 树莓派爱好者ITJoker(通过C socket通信实现树莓派视频小车)

36 树莓派串口通信

树莓派小车By 树莓派爱好者ITJoker(通过python socket通信实现树莓派视频小车)

树莓派串口通信

树莓派串口通信

树莓派 python 如何将本地文件上传到指定的服务器页面上