当前位置:  开发笔记 > 编程语言 > 正文

从Python写入Vista中的串口

如何解决《从Python写入Vista中的串口》经验,为你挑选了2个好方法。

如何从Python写入Vista中的串口?termios包似乎只支持posix.



1> Toni Ruža..:

pyserial做的伎俩,你需要Windows的python扩展,以便它在Windows中工作.



2> Fylke..:

似乎使用pyserial并不比这更难:

import serial

ser = serial.Serial(0)  # open first serial port with 9600,8,N,1
print ser.portstr       # check which port was really used
ser.write('hello')
ser.close()


@Robert P:我不同意,这更适合作为答案
推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有