public interface IRFIDWithISO15693 extends IRFIDBase
Modifier and Type | Method and Description |
---|---|
char[] |
genericFunction_ex(char command,
char IcMfg,
char[] databuf,
int datalen) |
char[] |
genericFunction(char command,
char[] databuf,
char datalen) |
ISO15693Entity |
inventory()
读卡
read card |
boolean |
lockAFI()
锁定AFI
lock AFI |
boolean |
lockDSFID()
锁定DSFID
lock DSFID |
ISO15693Entity |
read(int block)
读取块数据
read block data |
ISO15693Entity |
read(int startBlock,
int Blocklen)
读取块数据
block data |
boolean |
write(int startBlock,
int Blocklen,
java.lang.String hexData)
写卡
card writing |
boolean |
write(int block,
java.lang.String hexData)
写卡
card writing |
boolean |
writeAFI(int iAFI)
写入AFI
Write AFi |
boolean |
writeDSFID(int iDSFID)
写入DSFID
Write DSFID |
free, getVersion, init, init, isPowerOn, rfidUpgrade
ISO15693Entity inventory()
ISO15693Entity read(int block) throws RFIDReadFailureException
block
- 块区RFIDReadFailureException
- 读卡失败异常ISO15693Entity read(int startBlock, int Blocklen) throws RFIDReadFailureException
Blocklen
- 块区RFIDReadFailureException
- 读卡失败异常boolean write(int block, java.lang.String hexData) throws RFIDNotFoundException
block
- 块区hexData
- 十六进制数据RFIDNotFoundException
- 寻卡失败异常boolean write(int startBlock, int Blocklen, java.lang.String hexData) throws RFIDNotFoundException
startBlock
- 块区hexData
- 十六进制数据RFIDNotFoundException
- 寻卡失败异常boolean writeAFI(int iAFI) throws RFIDNotFoundException
iAFI
- AFI值RFIDNotFoundException
- 寻卡失败异常boolean lockAFI() throws RFIDNotFoundException
RFIDNotFoundException
boolean writeDSFID(int iDSFID) throws RFIDNotFoundException
iDSFID
- DSFID值RFIDNotFoundException
- 寻卡失败异常boolean lockDSFID() throws RFIDNotFoundException
RFIDNotFoundException
- 寻卡失败异常char[] genericFunction(char command, char[] databuf, char datalen)
command
- 命令databuf
- 数据datalen
- 数据长度char[] genericFunction_ex(char command, char IcMfg, char[] databuf, int datalen)
command
- 命令IcMfg
- 厂商信息databuf
- 数据datalen
- 数据长度