摘要:
# coding=utf-8import serial ser=serial.Serial('com1',9600)ser.write(b"hello")while 1: ser.write(ser.read(3))ser.close() 阅读全文
摘要:
第三方模块网站https://pypi.python.org/pypi,按名字搜索 pip安装。 一pip安装: 命令行定位到C:\Pythonxx\Scripts下 运行 easy_inatall pip,用pip安装其它模块: cmd命令行下pip install xxx 二 pyserial安 阅读全文