摘要: import serial test = serial.Serial("COM1",115200)#这里就已经打开了串口 print(test.portstr) test.write('hello world'.encode("utf-8") test.close() 阅读全文
posted @ 2018-11-13 23:32 朱小勇 阅读(861) 评论(0) 推荐(0) 编辑
摘要: 举例下载串口模块pyserial: 下载安装了python之后,打开cmd,在python的安装目录里,搜索pip,把pip3.7.exe拖进cmd,然后输入pip3.7.exe install pyserial 阅读全文
posted @ 2018-11-13 22:27 朱小勇 阅读(1254) 评论(0) 推荐(0) 编辑