Re: Perl conversion to python...

2009-11-24 Thread Hans Mulder
J Kenneth King wrote: Benjamin Schollnick writes: select(undef, undef, undef, 0.01); # select() is a system call in Perl.. # insert Python equivalent here That would be: time.sleep(0.01) Perl has a sleep() built-in, but it truncates its argumen

Re: Perl conversion to python...

2009-11-23 Thread J Kenneth King
Benjamin Schollnick writes: > Folks, > > I'm having some issues here with pyserial & trying to translate a perl > script to python... It's probably my inexperience with PySerial & > perl that is troubling me... > > Can anyone assist? > > I'm concerned, since I can't seem to receive the data in a

Perl conversion to python...

2009-11-23 Thread Benjamin Schollnick
Folks, I'm having some issues here with pyserial & trying to translate a perl script to python... It's probably my inexperience with PySerial & perl that is troubling me... Can anyone assist? I'm concerned, since I can't seem to receive the data in any reliable manner.. I've tested multiple ti