The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

IPC::Serial - Simple message passing over serial ports

VERSION

 $Revision: 1.006 $
 $Date: Sun Jun 11 12:42:55 PDT 2017 $

SYNOPSIS

Simple message passing over serial ports.

    use IPC::Serial;

    my $serial1 = new IPC::Serial (Port => '/dev/cua00');
    my $serial2 = new IPC::Serial (Port => '/dev/cua01');

    $serial1->sendmsg("Hello there!");
    my $msg = $serial2->getmsg;

METHODS

new

getmsg

sendmsg

close

AUTHOR

Ashish Gulhati, <ipc-serial at hash.neo.tc>

BUGS

Please report any bugs or feature requests to bug-ipc-serial at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=IPC-Serial. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc IPC::Serial

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright (c) 2017 Ashish Gulhati.

This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.

See http://www.perlfoundation.org/artistic_license_2_0 for the full license terms.