摘要:
import serial test = serial.Serial("COM1",115200)#这里就已经打开了串口 print(test.portstr) test.write('hello world'.encode("utf-8") test.close() 阅读全文
摘要:
举例下载串口模块pyserial: 下载安装了python之后,打开cmd,在python的安装目录里,搜索pip,把pip3.7.exe拖进cmd,然后输入pip3.7.exe install pyserial 阅读全文