vote up 4 vote down star

How do I write to the serial port in Vista from Python? The termios package only seem to support posix.

flag

2 Answers

vote up 7 vote down

pyserial does the trick, you'll need python extensions for windows for it to work in windows.

link|flag
+1, but maybe a very short example would be nice too – Ali A Mar 12 at 23:12
vote up 2 vote down check

Seems like it wasn't any harder than this using 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()
link|flag
Update your original question if you have new information instead of posting a new answer. :) – Robert P Mar 13 at 1:52
+1: for small example – J.F. Sebastian Mar 13 at 2:13
@Robert P: I disagree, this is more appropriate as an answer – Toni Ruža Mar 13 at 9:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.