Re: pySerial question, setting certain serial parameters [newbie]

2012-02-07 Thread Peter
On Feb 4, 11:47 pm, Jean Dupont jeandupont...@gmail.com wrote: I need to set the following options I found in a Perl-script in Python for serial communication with a device (a voltmeter): $port-handshake(none); $port-rts_active(0); $port-dtr_active(1); I have thus far the following  

pySerial question, setting certain serial parameters [newbie]

2012-02-06 Thread Jean Dupont
I need to set the following options I found in a Perl-script in Python for serial communication with a device (a voltmeter): $port-handshake(none); $port-rts_active(0); $port-dtr_active(1); I have thus far the following statements but I think it does not set the above parameters correctly:

Re: pySerial question, setting certain serial parameters [newbie]

2012-02-06 Thread Chris Rebert
On Sat, Feb 4, 2012 at 4:47 AM, Jean Dupont jeandupont...@gmail.com wrote: I need to set the following options I found in a Perl-script in Python for serial communication with a device (a voltmeter): $port-handshake(none); $port-rts_active(0); $port-dtr_active(1); I have thus far the