| RFID-Alien documentation | Contained in the RFID-Alien distribution. |
RFID::Alien::Reader::TCP - Implement RFID::Alien::Reader over a TCP connection
This class takes a host and port to connect to, connects to it, and implements the Alien RFID protocol over that connection. It can use the reader's builting TCP service, or a serial-to-Ethernet adapter plugged into the serial port of the reader; I tested it with both.
This class is built on top of RFID::Alien::Reader and RFID::Reader::TCP.
This constructor accepts all arguments to the constructors for RFID::Alien::Reader and RFID::Reader::TCP, and passes them along to both constructors. Any other settings are intrepeted as parameters to the set method.
RFID::Alien::Reader, RFID::Reader::TCP, RFID::Alien::Reader::Serial, http://whereabouts.eecs.umich.edu/code/rfid-perl/.
Scott Gifford <gifford@umich.edu>, <sgifford@suspectclass.com>
Copyright (C) 2004-2006 The Regents of the University of Michigan.
See the file LICENSE included with the distribution for license information.
| RFID-Alien documentation | Contained in the RFID-Alien distribution. |
package RFID::Alien::Reader::TCP; use RFID::Alien::Reader; $VERSION=$RFID::Alien::Reader::VERSION; @ISA = qw(RFID::Alien::Reader RFID::Reader::TCP); # Written by Scott Gifford <gifford@umich.edu> # Copyright (C) 2004-2006 The Regents of the University of Michigan. # See the file LICENSE included with the distribution for license # information.
use strict; use warnings; use RFID::Reader::TCP;
1;