Package com.metratec.lib.rfidreader.mf
Class QuasarMF
- java.lang.Object
-
- com.metratec.lib.rfidreader.MetratecReader<T>
-
- com.metratec.lib.rfidreader.MetratecReaderGen1<MfTag>
-
- com.metratec.lib.rfidreader.mf.MFReader
-
- com.metratec.lib.rfidreader.mf.QuasarMF
-
public class QuasarMF extends MFReader
QuasarMF Mifare Reader
The QuasarMF is an industrial RFID Reader for transponders that communicate using the ISO14443A and the MIFARE® protocols MIFARE Classic®, MIFARE Ultralight®. It is one of a few readers worldwide using MIFARE technology that has a single-ended antenna output which allows using any HF RFID antenna instead of specially designed MIFARE antennas. This makes it even possible to connect the reader to a multiplexer and read tags from several antennas sequentially.- Author:
- mn
-
-
Field Summary
-
Fields inherited from class com.metratec.lib.rfidreader.mf.MFReader
CARD_TYPE_MIFARE_1K, CARD_TYPE_MIFARE_4K, CARD_TYPE_MIFARE_DESFIRE, CARD_TYPE_MIFARE_ULTRALIGHT
-
Fields inherited from class com.metratec.lib.rfidreader.MetratecReader
STATE_CONFIGURING, STATE_CONNECTING, STATE_RUNNING, STATE_STOPPED, STATE_WAITING_FOR_RECONNECT
-
-
Constructor Summary
Constructors Constructor Description QuasarMF(java.lang.String identifier, ICommConnection connection)
Creates a new QuasarMF with the specified connectionQuasarMF(java.lang.String identifier, java.lang.String usbDeviceSerialNumber)
Creates a new QuasarMF class for communicate with the specified metraTec usb QuasarMFQuasarMF(java.lang.String identifier, java.lang.String ipAddress, int port)
Creates a new QuasarMF class for communicate with the specified metraTec ethernet QuasarMFQuasarMF(java.lang.String identifier, java.lang.String portName, int baudrate, int dataBit, int stopBit, int parity, int flowControl)
Creates a new QuasarMF class for communicate with the specified metraTec serial QuasarMF
-
Method Summary
-
Methods inherited from class com.metratec.lib.rfidreader.mf.MFReader
authenticatedSector, authenticatedSector, close, disableRF, enableRF, getInventory, getInventoryOnlyNewTags, getTagData, getTagData, getTagData, getTagData, scanInventory, scanInventory, selectCard, setAntennaPort, setKeyToUse, setMultiplexAntennas, setPower, setTagData, stopInventory
-
Methods inherited from class com.metratec.lib.rfidreader.MetratecReaderGen1
getCRCState, getEndOfFrameState, getFirmwareRevision, getHardwareRevision, getInput, getReaderType, getRevision, getSerialNumber, ping, reset, scanInventory, setOutput, standby, startInventory, stop, wakeUp
-
Methods inherited from class com.metratec.lib.rfidreader.MetratecReader
connect, connect, disconnect, getIdentifier, getInputDebounceTime, getReceiveTimeout, isConnected, setIdentifier, setInputDebounceTime, setMaxReconnectWaitTime, setMinReconnectWaitTime, setReaderEventListener, setReceiveTimeout, setTagEventListener, start, start, startAndWait, startAndWait, startInventory
-
-
-
-
Constructor Detail
-
QuasarMF
public QuasarMF(java.lang.String identifier, ICommConnection connection)
Creates a new QuasarMF with the specified connection- Parameters:
identifier
- reader identifierconnection
- the communication interface (instance ofICommConnection
)
-
QuasarMF
public QuasarMF(java.lang.String identifier, java.lang.String usbDeviceSerialNumber)
Creates a new QuasarMF class for communicate with the specified metraTec usb QuasarMF- Parameters:
identifier
- reader identifierusbDeviceSerialNumber
- serial number of the usb reader
-
QuasarMF
public QuasarMF(java.lang.String identifier, java.lang.String ipAddress, int port)
Creates a new QuasarMF class for communicate with the specified metraTec ethernet QuasarMF- Parameters:
identifier
- reader identifieripAddress
- ip address of the ethernet readerport
- port of the ethernet reader
-
QuasarMF
public QuasarMF(java.lang.String identifier, java.lang.String portName, int baudrate, int dataBit, int stopBit, int parity, int flowControl)
Creates a new QuasarMF class for communicate with the specified metraTec serial QuasarMF- Parameters:
identifier
- reader identifierportName
- port on which the rs232 reader is connectedbaudrate
- baudrate of the rs232 readerdataBit
- rs232 databitsstopBit
- rs232 stopbitparity
- rs232 parityflowControl
- rs232 flowcontrol
-
-