help on win32::serialport

Can anybody help with examples on reading a serial port.
Even after reading through the win32::serialport CPAN pod my attempt
to write a working code is gone futile.
I am trying to read a barcode with a scanner.

Please do help

regards,
jis
jis [ Mo, 04 Juni 2007 23:12 ] [ ID #1730009 ]

Re: help on win32::serialport

"jis" <jismagic [at] gmail.com> wrote in message
news:1180991545.660022.273750 [at] p77g2000hsh.googlegroups.com.. .
> Can anybody help with examples on reading a serial port.
> Even after reading through the win32::serialport CPAN pod my attempt
> to write a working code is gone futile.
> I am trying to read a barcode with a scanner.

I think your best chance of success would be to post to "Seekers of Perl
Wisdom" at perlmonks. Another option would be the 'perl-win32-users' mailing
list hosted by ActiveState, though it's really low volume these days. That's
not to say that there's no-one here who can help, but you've given us very
little to work with.

Wherever you post, it's better to provide a copy'n'paste of some code that
you've tried (along with a copy'n'paste of the error messages it generates).
That way, even if there's no-one around who can actually answer the
question, there might be someone lurking about who can see a fault in your
code and provide a correction.

Google might also be able to help out. I tried
http://www.google.com.au/search?hl=en&q=Win32%3A%3ASerialPor t+barcode&btnG=Google+Search&meta=

I couldn't see anything there that stood out as a likely solution, but I
didn't actually follow any of the links.

Cheers,
Rob
Sisyphus [ Di, 05 Juni 2007 12:10 ] [ ID #1730887 ]

Re: help on win32::serialport

On Jun 5, 5:10 am, "Sisyphus" <sisyph... [at] nomail.afraid.org> wrote:
> "jis" <jisma... [at] gmail.com> wrote in message
>
> news:1180991545.660022.273750 [at] p77g2000hsh.googlegroups.com.. .
>
> > Can anybody help with examples on reading a serial port.
> > Even after reading through the win32::serialport CPAN pod my attempt
> > to write a working code is gone futile.
> > I am trying to read a barcode with a scanner.
>
> I think your best chance of success would be to post to "Seekers of Perl
> Wisdom" at perlmonks. Another option would be the 'perl-win32-users' mailing
> list hosted by ActiveState, though it's really low volume these days. That's
> not to say that there's no-one here who can help, but you've given us very
> little to work with.
>
> Wherever you post, it's better to provide a copy'n'paste of some code that
> you've tried (along with a copy'n'paste of the error messages it generates).
> That way, even if there's no-one around who can actually answer the
> question, there might be someone lurking about who can see a fault in your
> code and provide a correction.
>
> Google might also be able to help out. I triedhttp://www.google.com.au/search?hl=en&q=Win32%3A%3ASeri alPort+barcode...
>
> I couldn't see anything there that stood out as a likely solution, but I
> didn't actually follow any of the links.
>
> Cheers,
> Rob

Atast i could figure out how it works.if anyobdy else searching for
the same here is the code.
This reads the barcode with the help of scanner.This is a basic
code.Ofcourse need to be modified for realtime use.

use strict;
use Win32::SerialPort;
sub openPort($);
sub closePort($);

my $bar;
my $DEVICE = "COM1";
my $data=0;
my $serial =openPort($DEVICE);
while(!($data=~/\r/))
{
$data=$serial->input;
$bar=$bar.$data;
}
print $bar;
closePort($serial);

sub openPort($)
{
my ($device) = [at] _;


my $serial = Win32::SerialPort->new ($device, 1);
die "Can't open serial port $serial: $^E\n" unless ($serial);

$serial->user_msg(1);
$serial->databits(8);
$serial->baudrate(9600);
$serial->parity("none");
$serial->stopbits(1);
return $serial;
}

sub closePort($)
{
my ($serial) = [at] _;
$serial->close();
}
jis [ Di, 05 Juni 2007 17:29 ] [ ID #1730894 ]
Perl » comp.lang.perl.modules » help on win32::serialport

Vorheriges Thema: help on win32::guitest
Nächstes Thema: Net::Telnet Juniper display XML troubles