QUIO QU-60x Serial 13.56M RFID Reader User manual

Type
User manual

QUIO QU-60x Serial 13.56M RFID Reader is designed to read and write to 13.56 MHz RFID tags that are ISO 14443A, ISO 14443B, and ISO 15693 compliant. This reader can be integrated into a variety of applications, including access control, inventory management, and asset tracking.

The QUIO QU-60x has a read range of up to 5-10 cm and supports both serial and USB HID interfaces. It also features an embedded speaker and LED, which can be controlled via the API.

The QUIO QU-60x comes with a comprehensive DLL API that allows developers to easily integrate the reader into their applications. The API provides functions for tag inventory, data reading and writing, and security management.

QUIO QU-60x Serial 13.56M RFID Reader is designed to read and write to 13.56 MHz RFID tags that are ISO 14443A, ISO 14443B, and ISO 15693 compliant. This reader can be integrated into a variety of applications, including access control, inventory management, and asset tracking.

The QUIO QU-60x has a read range of up to 5-10 cm and supports both serial and USB HID interfaces. It also features an embedded speaker and LED, which can be controlled via the API.

The QUIO QU-60x comes with a comprehensive DLL API that allows developers to easily integrate the reader into their applications. The API provides functions for tag inventory, data reading and writing, and security management.

Home » QUIO » QUIO QU-60x Serial 13.56M RFID Reader User Manual
Contents
1 QUIO QU-60x Serial 13.56M RFID
Reader
2 Introduction
3 YW-605 Serial
4 Feature
5 Specifications
6 Program Manual
7 6 ISO15693 card operation
8 Order Infomation
9 Documents / Resources
10 Related Posts
QUIO QU-60x Serial 13.56M RFID Reader
QUIO QU-60x Serial 13.56M RFID Reader User Manual
Manuals+ User Manuals Simplified.
Introduction
YW-605 RFID reader/Writer is the 13.56M HF tags Reader and Writer.She Can support ISO14443A, ISO14443B
and ISO15693 RFID tags.
YW-605 Serial
13.56M RFIDReader/Writer
Feature
Distance of read tags is 5-10cm
DLL API supported.VC,VB,Delphi, C++BuilderC#.net,WEB example
Beep and LED embed, which can be controlled by API.
RFID module,RFID Reader/Writer RFID Tags
Specifications
Baud19200BPS
Power DC5V ± 10%
Max Con 1.5W
Temp -30  +70
Humidity 35%  95%
Size 120 * 84 * 25 (mm)
Weight 100g
Program Manual
DLL API and functions
1. Get the version of DLL
prototypeint stdcall YW_GetDLLVersion(void);
Param
Returnversion Number is success, else is fail.
2. DES
prototypeint stdcall DES(unsigned char cModel, unsigned char *pkey, unsigned char *in, unsigned char
*out);
Param
Return0
3. 3DES
prototypeintstdcall DES3(unsigned char cModel, unsigned char *pKey, unsigned char *In, unsigned char
*Out);
Param
Return0
4. 3DES with vector
prototypeint stdcall DES3_CBC(unsigned char cModel, unsigned char
pKey,unsigned char *In, unsigned char *Out, unsigned char
pIV);
Param
Return0
5. Initial Serial Port
prototypeint stdcall YW_ComInitial(int PortIndex, int Bound);
Param
Return1 success0 fail
6. Free Serial port
prototypeint stdcall YW_ComFree(void)
Param
Return1 success0 fail
7. Initial HID Port
prototypeint stdcall YW_USBHIDInitial(void);
Param
Return1 success0 fail
8. Free HID Port
prototypeint stdcall YW_USBHIDFree(void);
Param
Return1 success0 fail
9. Change the serial port baud
prototypeint stdcall YW_ComNewBound(int ReaderID ,int NewBound);
Param
Return1 success0 fail
10. Set Reader ID
prototypeint stdcall YW_SetReaderID(int OldID, int NewID);
Param
Return1 success0 fail
11. Get Reader ID
prototypeint stdcall YW_GetReaderID(int ReaderID);
Param
Return>=0 success and is Reader ID, other is fail
12. Get Reader Fireware version
prototypeint stdcall YW_GetReaderVersion(int ReaderID);
Param
Return>=0 success and is version, other is fail
13. Get Reader serial No.
prototypeint stdcall YW_GetReaderSerial(int ReaderID, char *ReaderSerial);
Param
Return1 success0 fail
14. Beep control
prototypeint stdcall YW_Buzzer(int ReaderID,int Time_ON, int Time_OFF, int Cycle);
Param
Return1 success0 fail
15. LED control
prototypeintstdcallYW_Led(intReaderID,intLEDIndex,intTime_ON, int Time_OFF, int Cycle, int
LedIndexOn);
Param
Return1 success0 fail
16. Set Content of 8 LED display
prototypeintstdcallYW_LEDDisplay(int ReaderID,int Alignment,char *LEDText);
Param
Return1 success0 fail
17. Set the Status of Antenna
prototypeint stdcall YW_AntennaStatus(int ReaderID,bool Status);
Param
Return1 success0 fail
18. Set Work Mode of Tags
prototypeint stdcall YW_SearchCardMode(int ReaderID,int SearchMode);
Param
Return1 success0 fail
Functions about Tags of ISO15693
19. 15693 Tags Inventory
prototypeint stdcall YW_ISO15693_Inventory(int ReaderID, unsigned char *PData, unsigned char
*PLen);
Param
Return1 success0 fail
20. 15693 Tags Stay_Quiet
prototypeint stdcall YW_ISO15693_Stay_Quiet(int ReaderID, unsigned char *PUID);
Param
Return1 success0 fail
21. Select Tag of ISO15693
prototypeint stdcall YW_ISO15693_Select(int ReaderID, unsigned char Model, unsigned char *PUID);
Param
Return1 success0 fail
22. Reset To Ready of ISO15693 Tag
prototypeint stdcallYW_ISO15693_Reset_To_Ready(intReaderID,unsigned char Model, unsigned char
*PUID);
Param
Return1 success0 fail
23. Read Block of ISO15693 Tag
prototypeint stdcall YW_ISO15693_Read(int ReaderID,unsigned char Model,unsigned char
*PUID,unsigned char StartBlockID, unsigned char BlockNums, unsigned char *PData, unsigned char
*PLen);
Param
Return1 success0 fail
24. Write Block of ISO15693 Tag
prototypeint stdcall YW_ISO15693_Write(int ReaderID,unsigned char Model, unsigned char *PUID,
unsigned char BlockID,unsigned char DataLen, unsigned char *PData);
Param
Return1 success0 fail
25. Lock Block of ISO15693 Tags
prototypeint stdcall YW_ISO15693_Lock_Block(int ReaderID,unsigned char Model, unsigned char
*PUID, unsigned char BlockID);
Param
Return1 success0 fail
26. Write AFI of ISO15693 Tags
prototypeint stdcall YW_ISO15693_Write_AFI(int ReaderID,unsigned char Model, unsigned char *PUID,
unsigned char AFI);
Param
Return1 success0 fail
27. Lock AFI of ISO15693 Tags
prototypeint stdcallYW_ISO15693_Lock_AFI(intReaderID,unsigned char Model, unsigned char *PUID);
Param
Return1 success0 fail
28. Write DSFIC of ISO15693 Tags
prototypeint stdcall YW_ISO15693_Write_DSFID(int ReaderID,unsigned char Model, unsigned char
*PUID, unsigned char DSFID);
Param
Return1 success0 fail
29. Lock DSFIC of ISO15693 Tags
prototypeint stdcall YW_ISO15693_Lock_DSFID(int ReaderID,unsigned char Model, unsigned char
*PUID);
Param
Return1 success0 fail
30. Get System Information of ISO15693 Tags
prototypeint stdcall YW_ISO15693_Get_System_Information(int ReaderID,unsigned char Model,
unsigned char *PUID,unsigned char *PData, unsigned char *PLen);
Param
Return1 success0 fail
31. Get Security of Blocks about ISO15693 Tag
prototypeint stdcall YW_ISO15693_Get_Block_Security(int ReaderID,unsigned char Model, unsigned
char *PUID,unsigned char StartBlockID, unsigned char BlockNums,unsigned char *PData, unsigned char
*PLen);
Param
Return1 success0 fail
32. Multi Inventtory of ISO15693 Tags
prototypeint stdcall YW_ISO15693_Multi_Inventory(int ReaderID, unsigned char AFIEnable, unsigned
char AFI, unsigned char *PData, unsigned char *PLen);
Param
  • Page 1 1
  • Page 2 2
  • Page 3 3
  • Page 4 4
  • Page 5 5
  • Page 6 6
  • Page 7 7
  • Page 8 8
  • Page 9 9
  • Page 10 10
  • Page 11 11
  • Page 12 12
  • Page 13 13
  • Page 14 14
  • Page 15 15
  • Page 16 16
  • Page 17 17
  • Page 18 18
  • Page 19 19
  • Page 20 20
  • Page 21 21
  • Page 22 22
  • Page 23 23
  • Page 24 24

QUIO QU-60x Serial 13.56M RFID Reader User manual

Type
User manual

QUIO QU-60x Serial 13.56M RFID Reader is designed to read and write to 13.56 MHz RFID tags that are ISO 14443A, ISO 14443B, and ISO 15693 compliant. This reader can be integrated into a variety of applications, including access control, inventory management, and asset tracking.

The QUIO QU-60x has a read range of up to 5-10 cm and supports both serial and USB HID interfaces. It also features an embedded speaker and LED, which can be controlled via the API.

The QUIO QU-60x comes with a comprehensive DLL API that allows developers to easily integrate the reader into their applications. The API provides functions for tag inventory, data reading and writing, and security management.

Ask a question and I''ll find the answer in the document

Finding information in a document is now easier with AI