如何从Python写入Vista中的串口? termios包似乎只支持posix。
答案 0 :(得分:9)
pyserial可以解决问题,你需要python extensions for windows才能在Windows中使用它。
答案 1 :(得分:7)
似乎使用pyserial并不比使用{{3}}更难:
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()