Online documentation for TagIt

Generated 2006-03-17

Tag-It RF-ID tag reader component

Description

RFID Tag Reader interface for reading RFID tags. This component is designed to interface with model S6500 Tag Reader or compatible. It also provides a tagid mapper to specify user friendly names for tags.

Installation

Connect the Tag Reader to a serial port.

Configuration

Specify the serial port your tag reader is connected to.
Set "setIsRunning" property to true to start reading tags.

Usage

Set the comm port your reader is connected to. Usually in the form COMX.
Set the delay in millisecs between readings.

The component also provides a mapping functionality. This is useful for providing user friendly names to tags for ease of use. To use the mapping feature enter a list of two columns with tagIds on the left side and matching tag names on the right hand side into the tagIdMap property.

Technical Details

Requires javax.comm package for reading from the serial port.

Revision 1.2 2005/07/20 16:52:16 cgreenhalgh ensure serial initialised; change config property names to fit convention

Revision 1.1 2005/05/03 11:54:40 cgreenhalgh Import from dumas cvs

Revision 1.24 2005/04/28 15:59:22 cmg add BSD license boilerplates

Revision 1.23 2004/10/21 14:55:43 phelps Alphabetized and added missing jar files

Revision 1.22 2004/10/12 13:35:45 phelps Removed the comm port initialization code as I'm told that it's now done centrally. Fixed a thinko in the load code which could cause amusing problems when reloading.

Revision 1.21 2004/09/02 14:36:57 cmg force javax.comm Win32Driver initialisation; persist isRunning and restart if required

Revision 1.20 2004/09/02 12:45:16 jch Added stop method to properly close port.

Revision 1.19 2004/08/23 16:31:24 phelps Tidying: fixed tyops in comments and print statements, removed redundant synchronized entries, moved getX accessor before setX ones, removed PropertyChangeListener interface bits

Revision 1.18 2004/08/23 14:09:52 phelps The S6500 reader requires at least a 5ms pause between response and the next request, so pause after the version response is read, and ensure that the 'delay' property is never less than 5.

Revision 1.17 2004/08/20 14:07:41 phelps Let the serializer specify the serial port settings

Revision 1.16 2004/08/20 12:47:07 phelps Use the appropriate serializer for a given RF-ID model

Revision 1.15 2004/08/20 10:51:56 phelps Added the 'model' property so that we can support both the S6000 and S6500.

Revision 1.14 2004/08/20 10:23:14 phelps Persistified

Revision 1.13 2004/08/20 09:53:48 phelps Allow tabs to be used as separators in the tagIdMap

Revision 1.12 2004/08/20 09:24:35 phelps Update the status as we transition through the state machine.

Revision 1.11 2004/08/20 09:05:48 phelps Avoid overly-clever locking and also avoid a race condition

Revision 1.10 2004/08/19 17:19:13 phelps Parsing the tagIdMap property

Revision 1.9 2004/08/19 16:52:25 phelps Keeping the list of tag names up to date too.

Revision 1.8 2004/08/19 16:33:46 phelps Keeping track of the inventory and notifying the listeners when it changes.

Revision 1.7 2004/08/19 16:05:17 phelps Implemented the state machine that drives the tag reader.

Revision 1.6 2004/08/19 12:50:41 phelps Discarded the 'isRunning' instance variable since it is identical to the nullness of 'port'.

Revision 1.5 2004/08/19 12:27:35 phelps Register as a listener for the serializer. For now just log the resulting information.

Revision 1.4 2004/08/18 16:32:19 phelps Don't try to open the serial port if the identifier is null

Revision 1.3 2004/08/18 13:57:55 phelps Added some minimalist serial port twiddlings

Revision 1.2 2004/08/17 17:58:24 phelps Actually opening and closing the COM port. Still not doing anything interesting with it.

Revision 1.1 2004/08/17 17:13:35 phelps initial