Re: Accessing Windows Serial Port

2006-02-07 Thread Grant Edwards
On 2006-02-07, malv <[EMAIL PROTECTED]> wrote: > Hi All, > Would anybody know whether PySerial would work over an usb/serial > adapter? Yes. > (what about usb/parallel adapters?) Don't know. -- Grant Edwards grante Yow! I'm an East Side

Re: Accessing Windows Serial Port

2006-02-07 Thread Roel Schroeven
malv schreef: > Hi All, > Would anybody know whether PySerial would work over an usb/serial > adapter? If the driver for the adapter creates a virtual COM-port (i.e. it shows up as a serial port in Windows' device manager), it works. The software sees no difference between a real port and a fake

Re: Accessing Windows Serial Port

2006-02-07 Thread malv
Hi All, Would anybody know whether PySerial would work over an usb/serial adapter? (what about usb/parallel adapters?) Thx. malv -- http://mail.python.org/mailman/listinfo/python-list

Re: Accessing Windows Serial Port

2006-02-06 Thread Grant Edwards
On 2006-02-06, George T. <[EMAIL PROTECTED]> wrote: > I need to access the serial port via python on a windows machine. > Reading on the web, there are three solutions: pyserial, siomodule and > USPP. You can also just use win32 stuff directly (CreateFile et al). > pyserial seems to be the best

Re: Accessing Windows Serial Port

2006-02-06 Thread Roel Schroeven
George T. schreef: > I need to access the serial port via python on a windows machine. > Reading on the web, there are three solutions: pyserial, siomodule and > USPP. pyserial seems to be the best option since the other two are > tested with Windows 95 and older versions of python. Would you ag

Accessing Windows Serial Port

2006-02-06 Thread George T.
I need to access the serial port via python on a windows machine. Reading on the web, there are three solutions: pyserial, siomodule and USPP. pyserial seems to be the best option since the other two are tested with Windows 95 and older versions of python. Would you agree with this or have I mis