This is a simple example of how to control a serial port using perl in linux.
For WIN32 systems please check out the Win32::Serial module.


#!/usr/bin/perl

use Device::SerialPort;

my $port = Device::SerialPort->new("/dev/ttyUSB0");
$port->databits(8);
$port->baudrate(19200);
$port->parity("none");
$port->stopbits(1);

while(1) {
my $byte=$port->read(1);
print "$byte";
}

Share

10 Comments

Jaynail · 04/30/2012 at 03:31

Hi all.

Did you experience using zwave to communicate your PC HOST using serial port. Thanks

aliyar · 04/07/2012 at 10:18

thanx a lot ..

its works

dmw · 11/17/2011 at 17:29

The example above will spin on cpu, reading as fast as the processor can cycle through the loop.

# to effectively poll at .1 second intervals, try setting:
$port->read_char_time(0);
$port->read_const_time(100);

# and in your while loop, don’t have read do so much work, and only print if you have something to print:
while (1) {
my ($count,$bytes) = $port->read(255);
print “$bytes” if $count > 0;
}

dmw · 11/17/2011 at 17:27

Thanks for the simple example. Couple of notes, though:

The example above will spin on cpu, reading as fast as the processor can cycle through the loop.

# to effectively poll at .1 second intervals, try setting:
$port->read_char_time(0);
$port->read_const_time(100);

# and in your while loop, don’t have read do so much work, and only print if you have something to print:
while (1) {
my ($count,$bytes) = $port->read(255);
print “$bytes” if $count > 0;
}

Chris · 08/18/2009 at 09:15

Nice! This is the first example that I’ve tried that actually worked! The main difference is that most sites have you use

my $byte = $port->lookfor(); #Which does not work!!!

my $byte = $port->read(1); #works!!!

Thanks!

Leave a Reply

%d