NAME

RFID::Matrics::Reader::Serial - Implement RFID::Matrics::Reader over a serial link


SYNOPSIS

This class takes a serial port object and implements the Matrics RFID protocol over it. This object is based on RFID::Reader::Serial, which should be consulted for additional information.

An example:

    use Win32::Serialport;
    use RFID::Matrics::Reader::Serial;
    $com = Win32::SerialPort->new($opt{c})
        or die "Couldn't open COM port '$opt{c}': $^E\n";
    my $reader = 
      RFID::Matrics::Reader::Serial->new(Port => $com,
                                         Node => 4,
                                         Antenna => 1)
        or die "Couldn't create reader object";


DESCRIPTION

This class is built on top of RFID::Matrics::Reader, and uses RFID::Reader::Serial to implement the underlying setup, reading, and writing functions.

Constructor

new

This creates a new RFID::Matrics::Reader::Serial object. All parameters are simply sent along to either the RFID::Reader::Serial Constructor or the set method.


SEE ALSO

the RFID::Matrics::Reader manpage, the RFID::Matrics::Reader::TCP manpage, the RFID::Reader::Serial manpage, the Win32::SerialPort manpage, the Device::SerialPort manpage, http://www.eecs.umich.edu/~wherefid/code/rfid-perl/.


AUTHOR

Scott Gifford <gifford@umich.edu>, <sgifford@suspectclass.com>

Copyright (C) 2004 The Regents of the University of Michigan.

See the file LICENSE included with the distribution for license information.