YHY630CTU ISO15693 RFID Reade/Write module

Size: px
Start display at page:

Download "YHY630CTU ISO15693 RFID Reade/Write module"

Transcription

1 DATASHEET 1. Supported cards: ISO 15693:Tag_it(2k) HF-1/I.CODE SLI / I.CODE SLI-S/ I.CODE SLI-L, SRF55V10P 2. Special Features: Complete Read/Write module with built-in transceiver antenna Contactless operating frequency MHz Based on SLRC400 reader IC Supports ISO15693 Typical time to read and write cards:<100ms USB Interface up to bps Secure Encrypted contactless communication Ideal fore secure access and fast data collection applications Typical Operating Instance: mm Power supply :DC 5V Watchdog timer V1.0 Page 1 of 16 July 2009

2 3. Introduction YHY630CTU is a compact 13.56MHz RFID Read / Write module designed for ISO15693 standard and supports I-code SLI, Tagit 2k transponders. It is controlled by external device over USB with simple protocols defined in this sheet. It has 2 LED and 1 buzzer output can be controlled by host. YHY630CTU can be easily and quickly integrated into RFID applications with very less effort. YHY630CTU is a module that is integrated with 8bit microcontroller, Philips analog & digital signal processor and necessary passive components to complete a fully functional read/write module. This module use CP2102 as USB-to-UART Bridge providing a simple solution for updating RS-232 designs to USB. It will provide a Virtual COM Port (VCP) to PC applications. 4. Pin INFORMATION Figure 1 J1 pin information J1: Interface to Host Pin Symbol Description J1-1 VCC Power VCC, 5V input J1-2 D- USB Data Minus J1-3 D+ USB Data Plus J1-4 GND Power Ground Table1 J1 USB Interface 5. Protocol 5.1. Introduction This chapter describes the protocol and commands which is used by the YHY630CTU to communication with host. V1.0 Page 2 of 16 July 2009

3 5.2. Protocol Command List: Command Type System Command Command Command Description 0x0101 Sets the new baud rate 0x0104 Reads the Firmware Revision of the Module 0x0106 Sets beep delay time 0x0107 Sets red and greed led on or off 0x0108 RFU 0x010C Switches ON or OFF the RF field Command Description 0x1000 Search several tags in RF field 0x1001 Search one tag in RF field 0x1002 Hatl the tag 0x1003 Select a tag 0x1004 Reset the tag into ready status 0x1005 Read blocks 0x1006 Write one block 0x1007 Lock one block 0x1008 Write AFI 0x1009 Lock AFI 0x100a Write DSFID 0x100b Lock DSFID 0x100c Get tag Information 0x100d Get Multiple Block Security Table 2 Command list 5.3 UART The communication between the host and the module take place at bps N, 8, 1. The host first sends the command and the module executes the operation and replies with a response to the command. The host can analyze the reply to check if the operation was successful or if any error occurred during the operation. Following is the UART frame for the commands sent by the host: Header Length Reserved Command Data CSUM 2Byte 2 Byte 2 Byte 2 Byte N Bytes 1 Byte Table 3 Command frame 1. Header: This header have 2 bytes that indicates the beginning of a frame. This byte should be always 0xAABB. 2. Length: This two bytes are used to indicate the length of the payload data. This includes the Reserved, Command, Data and the CSUM bytes. Low byte first. V1.0 Page 3 of 16 July 2009

4 3. Reserved: This byte is reserved for future use and not implemented currently. It has to be always 0x This two bytes are used to instruct the module on what operation to perform. Low byte first. 5. Data: These are parameters for the module to execute the command. For example, for a Read command, the data will be the block number to be read. For a Write command, this will be the block number. It maybe empty. 6. CSUM: This is the checksum byte. This byte is used on the host as well as the module to check the validity of the packet and to trap any data corruption. This is calculated by XOR all the bytes in the packet except the Header byte and Lenth bytes. Note: If there is one byte AA in the packet data from Length to CSUM,please insert one byte 0x00 after 0xAA,but the Length need not change. Following is the UART frame for the response packets sent by YHY630CTU module in response to the commands: Header Length Reserved Command Response CSUM 2Byte 2 Byte 2 Byte 2 Byte N Bytes 1 Byte Table 4 Answer frame 1. Header: This header have 2 bytes that indicates the beginning of a frame. This byte should be always 0xAABB. 2. Length: This two bytes are used to indicate the length of the payload data. This includes the Reserved, Command, Data and the CSUM bytes. Low byte first. 3. Reserved: This byte is reserved for future use and not implemented currently. It has to be always 0x This two bytes are used to instruct the module on what operation to perform. Low byte first. 5. Response: This contains the result data if an operation was successful or the error code if the operation was not successful. The first byte indicate the operation status by the module. For example, if status is zero it means that the operation was successful. Otherwise, it means that the operation was fail. 6. CSUM: This is the checksum byte. This byte is used on the host as well as the module to check the validity of the packet and to trap any data corruption. This is calculated by XOR all the bytes in the packet except the Header byte and Lenth bytes. Note: If there is one byte AA in the packet data from Length to CSUM,please insert one byte 0x00 after 0xAA,but the Length need not change. 6. COMMANDS & RESPONSES In this chapter detailed information and UART frame examples are given for command and responses. V1.0 Page 4 of 16 July 2009

5 6.1 System Command Set Baud Rate This command sets the UART baud rate of the module. Once it is set module will be able to communicate with new baud rate. YHY630CTU module operates at a default baud rate of bps when shipped from the factory. Command 0x0101 Baud Rate 1 Byte Determines the new baud rate 0x bps 0x bps 0x bps 0x bps 0x bps Response: Data Length 0x06 Command/Response 0x0101 Status/Error Code 1 Byte Status/Error Code AABB Set new baud rate to bps 07= ( :XOR) AA BB Baud rate changed successfully Read Firmware Version This command reads the firmware version of the module,it includes the module part number and soft version. Command 0x0104 Data None Response: The module responds with a version string to this command. AABB V1.0 Page 5 of 16 July 2009

6 Example Response: AA BB D PN:EHY400,Ver: Set Beep Delay Time This command sets the beep time,delay time is ms Command 0x0106 Data Delay time AABB Delay time is 0x30 *10ms Example Response: AA BB Operation is successful Sets led on or off This command sets the red or green led light or not.. Command 0x0107 1byte LED status 0x00 led off Data 0x01 red led on 0x02 green led on AABB Red led on. AABB Led off. Example Response: AA BB Operation is successful Set Antenna Power This command turns ON or OFF the RF field. RF field can be switched off when it is not required. This helps to reduce the active current consumption. The RF field can be switched ON whenever a read or write operation is required. V1.0 Page 6 of 16 July 2009

7 Command 0x010C 1 Byte Byte to instruct the reader whether to switch ON RF SWITCH or OFF the RF field 0x00 Switch Off RF Field Non-Zero Switch On RF Field AA BB C D Switch Off RF field AA BB C D RF field Switched Off 6.2 ISO Command Inventory16 This command search several tags in RF field.it can response up to 4 labels s ID. Command 0x1000 data No data Response: status Zero if sucess Data 1byte DSFID+8bytes ID: if only one label 1byte DSFID+8bytes ID+1byte DSFID+8bytes ID+ :if more than 2 labels AABB Search several tags in the RF field. AA BB 0F D7 77 D E0 9D Read successful. 03:DSFID D7 77 D E0: tag id AA BB A4 A2 D E0 00 A5 A2 D E0 00 4D 72 D E0 00 Inventory 3 tags. ID1: A4 A2 D E0 ID2: A5 A2 D E0 ID3: 4D 72 D E0 Failure: AA BB V1.0 Page 7 of 16 July 2009

8 6.2.2 Inventory This command search one tag in RF field. It is faster than inventory16. Command 0x1001 data No data Response: status Zero if sucess AABB Search one tag in the RF field. Data 1byte DSFID+8bytes ID AA BB 0F D7 77 D E0 9D Read successful. 03:DSFID D7 77 D E0: tag id Failure: AA BB Stay Quiet This command executes a Halt command on the selected tag. Command 0x0102 Data ID:8bytes AABB0d D777D E09C Halt selected Tag Example Response: AA BB PICC halted successful. AA BB PICC halted failure or no tag in the field Select This command select one tag in the RF field. V1.0 Page 8 of 16 July 2009

9 Command 0x0103 Data ID:8bytes AABB0d D777D E09D Selecte one Tag Example Response: AA BB Selection is successful Reset To Ready This command Reset the tag into ready status. If the tag was halt, it can be reset after this command. Command 0x0104 Model:1 byte,if icode2 tag,the model value is 0x02,if TI tag, the model Data value is 0x06 ID:8 bytes AABB0e D777D E098 Reset icode2 tag D777D E0 Example Response: AA BB Reset is successful Read multiple blocks This command reads n blocks from the specified block. Command 0x1005 Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes Start block 1 byte,indicate to read from block number. Block Number 1 byte-- Block Number to be read Response: Success: status 0x00 Block Data N blocks*4 Bytes,for example,read 2 blocks, then the N is 2 V1.0 Page 9 of 16 July 2009

10 AABB D777D E000029B Read icode2 tag,id is D777D E0, read from block 0,read 2 blocks total. AA BB 0E Read successful Write BLOCK This command writes 4 bytes to the specified block. Command 0x1006 Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes Block Number 1 byte-- Block Number to be written data 4 Bytes 4 bytes of data to be written to the block. AABB D777D E A Write 4 bytes data ( ) to block 0 AA BB Write successful Lock Block This command Lock one block data. When receiving the Lock block command, the VICC shall lock permanently the request block. Command Data 0x1007 model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID Block Number 8 bytes 1 byte-- Block Number to be Lock AABB0F D777D E0009B Lock block 0. V1.0 Page 10 of 16 July 2009

11 AA BB Lock successful AABB D777D E A Write data to block 0. AA BB Write block failure Write AFI This command writes 1 byte AFI value to the tag memory. Command 0x1008 Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes AFI 1 byte AFI value to be written AABB0F D777D E00296 Write AFI value (0x02) to tag memory AA BB Write successful Lock AFI This command Lock the AFI. When receiving the Lock AFI command, the VICC shall lock permanently the AFI value. Command 0x1009 Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes AABB0E D777D E095 Lock AFI. AA BB Lock successful Write DSFID V1.0 Page 11 of 16 July 2009

12 This command writes 1 byte DSFID value to the tag memory. Command 0x100A Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes DSFID 1 byte DSFID value to be written AABB0F a1002D777D E00395 Write DSFID value (0x03) to tag memory AA BB A A Write successful Lock DSFID This command Lock the AFI. When receiving the Lock AFI command, the VICC shall lock permanently the AFI value. Command 0x100B Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes AABB0E B1002D777D E097 Lock DSFID. AA BB B B Lock successful Get system information This command allows to retrieving the system information value from the VICC. Command 0x100C Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes AABB0E C1002D777D E090 Read VICC information. V1.0 Page 12 of 16 July 2009

13 AA BB C F D7 77 D E B Read successful Get Multiple Block Security This command allows to retrieving the VICC block security status. Command 0x100D Data model 1byte, if icode2 tag,the model value is 0x02,if TI tag, the model value is 0x06 ID 8 bytes Start block 1 byte start block to read. Block Number 1 byte-- Block Number to be read AABB D1002D777D E Read security from block 0 to 2. AA BB D C Read successful. 01: block0 is lock. 0000: block1,block2 is safe, can be written. 7. Packaging Information Figure2 Perspective View V1.0 Page 13 of 16 July 2009

14 190mil (4.8mm) 415mil (10.5mm) 525mil (13.3mm) 1765mil (44.8mm) 2575mil(65.4mm) 395mil (10.0mm) 595mil(15.1mm) 415mil (10.6mm) Φ157.48mil (4.0mm) 180mil (4.6mm) 3180mil(80.8mm) 1265mil(32.1mm) 1305mil(33.1mm) Φ118.11mil (3.0mm) 85mil (2.2mm) Φ157.48mil (4.0mm) 420mil (10.7mm) 105mil (2.7mm) 2365mil(60.1mm) Figure 3 Top View 8. Electrical & Performance Specifications 8.1 DC CHARACTERISTICS Symbol Description Min Typ Max Units Notes VCC Supply Voltage V Io Supply Current 106 ma Continuous Read Mode Ia Antenna off 53 ma Antenna Soft Power Down Table 5 DC Chacteristics V1.0 Page 14 of 16 July 2009

15 8.2 OPERATING TEMPERATURE Symbol Description Min Typ Max Units Notes TA Ambient Temperature C TJ Junction Temperature C Table 6 Operating Temperature 8.3 ABSOLUTE MAXIMUM RATINGS Symbol Description Min Typ Max Units Notes TSTG Storage Temperature C TA Ambient Temperature C VCC Supply Voltage V IMIO Maximum Current into any Port Pin ma ESD Electro Ststic Human Body Discharge 2000 V Model ESD Voltage Table 7 Absolute Maximum Ratings 8.4 PERFORMANCE SPECIFICATIONS Parameter Min Typ Max Units Notes Read Distance 8 10 cm may change according to tag size specs. Write Distance 8 10 cm may change according to tag size specs. Table 8 Performance Specifications V1.0 Page 15 of 16 July 2009

16 9. Sales And Service Information To obtain information about EHUOYAN products and technical support, reference the following information. Contact Information: Ehuoyan Technology Co.,Ltd. Rm 605 Tower 6 Qing yuan-xili Long Gang Lu Haidian District Beijing, China Tel: Fax: info@ehuoyan.com WebSite: V1.0 Page 16 of 16 July 2009

Supports ISO14443A Mifare Classic 1K, Mifare Classic 4K, Mifare Ultralight. Fast data transfer - Contactless communication up to 106 KHz

Supports ISO14443A Mifare Classic 1K, Mifare Classic 4K, Mifare Ultralight. Fast data transfer - Contactless communication up to 106 KHz SM132-USB 13.56 MHz RFID Mifare Read / Write USB Module DATA SHEET Complete Read/Write module including antenna Supports ISO14443A Mifare Classic 1K, Mifare Classic 4K, Mifare Ultralight USB Interface

More information

YHY502CTG++ DATASHEET MHz RFID Mifare Read/Write Module. YHY502CTG++ Datasheet Revision 2.0 Oct, 2009 Page 1 of 21

YHY502CTG++ DATASHEET MHz RFID Mifare Read/Write Module. YHY502CTG++ Datasheet Revision 2.0 Oct, 2009 Page 1 of 21 YHY5CTG++ Datasheet Revision 2.0 Oct, 29 Page 1 of 21 YHY5CTG++ 13.56MHz RFID Mifare Read/Write Module DATASHEET Complete Read/Write module with built-in transceiver antenna Auto checks for presence of

More information

15693-RW-TTL-PCB1 CONTENT 1. MAIN FEATURES PINNING INFORMATION BAUD RATE SETTING COMMUNICATION PROTOCOL...5

15693-RW-TTL-PCB1 CONTENT 1. MAIN FEATURES PINNING INFORMATION BAUD RATE SETTING COMMUNICATION PROTOCOL...5 15693-RW-TTL-PCB1 13.56Mhz ISO15693 reader/writer module with TTL interface RFID MODULE CONTENT 1. MAIN FEATURES...3 2. PINNING INFORMATION......4 3. BAUD RATE SETTING......5 4. COMMUNICATION PROTOCOL......5

More information

JMY505G User's Manual

JMY505G User's Manual JMY505G User's Manual (Revision 3.42) Jinmuyu Electronics Co. LTD 2011/6/28 Please read this manual carefully before using. If any problem, please mail to: jinmuyu@vip.sina.com Contents 1 Product introduction...

More information

JMY607H User's Manual

JMY607H User's Manual JMY607H User's Manual (Revision 3.42) Jinmuyu Electronics Co. LTD 2011/6/27 Please read this manual carefully before using. If any problem, please mail to: Jinmuyu@vip.sina.com Contents 1 Product introduction...

More information

GM 500A Mifare Read/Write Module V1.0 GM 500A Mifare 13.56MHz Read/Write Protocols Interface (I2C/UART) User s Manual

GM 500A Mifare Read/Write Module V1.0 GM 500A Mifare 13.56MHz Read/Write Protocols Interface (I2C/UART) User s Manual GM 500A Mifare 13.56MHz Read/Write Protocols Interface (I2C/UART) User s Manual CHAPTER 1. INTRODUCTION TO THE DMLPC2148A.Net DEVELOPMENT BOARD INTRODUCTION GM 500A Contactless card Read/Write module was

More information

JMY501H User's Manual

JMY501H User's Manual JMY501H User's Manual (Revision 3.42) Jinmuyu Electronics Co. LTD 2011/6/27 Please read this manual carefully before using. If any problem, please mail to: Jinmuyu@vip.sina.com Contents 1 Product introduction...

More information

JMY600 Series IC Card Module

JMY600 Series IC Card Module MIFARE & ISO14443A & ISO14443B & ISO7816 & ISO15693 IC CARD MODULE JMY600 Series IC Card Module ISO15693 Tags Operation Guide (Revision 1.00) Jinmuyu Electronics Co., LTD March 31, 2015 Please read this

More information

HF RFID SMART RFID YHY523R. RFID Reader/Writer Module. Product data sheet VER

HF RFID SMART RFID YHY523R. RFID Reader/Writer Module. Product data sheet VER HF RFID SMART RFID Module Product data sheet VER 1.0 2013-10-16 CONTENT 1.Introduction...4 2.Gengral description...4 3.Features...4 4.Application information...5 5.Quick reference data...5 6.Ordering information...6

More information

JMY504M User's Manual

JMY504M User's Manual JMY504M User's Manual (Revision 3.42) Jinmuyu Electronics Co. LTD 2011/6/28 Please read this manual carefully before using. If any problem, please mail to: Jinmuyu@vip.sina.com Contents 1 Product introduction...

More information

Strike the keyboard for you when it sniffing the tag!

Strike the keyboard for you when it sniffing the tag! Strike the keyboard for you when it sniffing the tag! No Programming Required! No Software Required! Just Plug and Play! Applications: 1) Employee identification 2) Time and attendance 3) Form filter to

More information

YHY202D RfidLoginer Datasheet

YHY202D RfidLoginer Datasheet Strike the keyboard for you when it sniffing the tag! No Programming Required! No Software Required! Just Plug and Play! Applications: 1) Employee identification 2) Time and attendance 3) Form filter to

More information

ER302 Manual. ER302 User Manual. Ordering Information

ER302 Manual. ER302 User Manual. Ordering Information ER302 Manual Ordering Information Model No. ER302 Name NFC Writer Phone 86-010-59870151, 59754725 Email info@ehuoyan.com Web http://www.ehuoyan.com/ Version 1.1.0 Page 1 of 13 Nov 2014 1. Overview The

More information

OEM-MICODE (MIFARE ICODE)

OEM-MICODE (MIFARE ICODE) Data Sheet OEMMICODE.PDF 7 Pages Last Revised 09/08/ OEMMICODE (MIFARE ICODE) Reader Board The OEMMICODE Reader Board is a complete Read/Write system for ISO4443A Mifare k, 4k, Ultralight and ISO5693 ICODE

More information

Documentation EVA3011U User Guide

Documentation EVA3011U User Guide Documentation EVA3011U Table of Content 1 Revision History... 2 2 Overview... 3 3 Controlling software EVA3011U... 4 3.1 Installation... 4 SCEMTEC... 4 3.2 Software description Connect Reader... 5 3.3

More information

Universal RFID Socket board with USB interface

Universal RFID Socket board with USB interface Data Sheet UNI_USB.pdf 9 Pages Last Revised 18/03/13 Universal RFID Socket board with USB interface The Universal RFID Socket board is the baseboard for the MicroRWD RFID reader modules from IB Technology.

More information

JMY6804 IC Card Reader

JMY6804 IC Card Reader NFC & MIFARE & ISO14443A & ISO14443B & ISO15693 IC CARD MODULE JMY6804 IC Card Reader User s manual (Revision 1.00) Jinmuyu Electronics Co. LTD 2017/10/20 Please read this manual carefully before using.

More information

RFID Read/Write Module, Serial (#28440) RFID Read/Write Module, USB (#28540)

RFID Read/Write Module, Serial (#28440) RFID Read/Write Module, USB (#28540) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

ACR120 Contactless Reader/Writer

ACR120 Contactless Reader/Writer ACR120 Contactless Reader/Writer Technical Specifications Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Typical Applications... 5 4.0. Technical

More information

History of Firmware Revisions. i-scan. Standard-Reader ID ISCLR200. SWRN ISCLR200 V5.04.doc

History of Firmware Revisions. i-scan. Standard-Reader ID ISCLR200. SWRN ISCLR200 V5.04.doc History of Firmware Revisions i-scan Standard-Reader ID ISCLR200 SWRN ISCLR200 V5.04.doc NOTE Copyright 2000-2006 by FEIG ELECTRONIC GmbH Lange Strasse 4 35781 Weilburg-Waldhausen http://www.feig.de Edition:

More information

ACM120S-SM Contactless Small Module

ACM120S-SM Contactless Small Module ACM120S-SM Contactless Small Module Technical Specifications Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Typical Applications... 5 4.0. Technical

More information

RFID SMART RFID MODULE. YHY522 RFID module RFID/NFC Reader/Writer Module. User manual

RFID SMART RFID MODULE. YHY522 RFID module RFID/NFC Reader/Writer Module. User manual RFID SMART RFID MODULE RFID/NFC Reader/Writer Module User manual Version 5.0 Oct, 2017 CONTENT 1.Introduction...4 2.Gengral description...4 3.Features...4 4.Application information...5 5.Quick reference

More information

USB-B1 v2 User Manual V1.3 23/01/2018

USB-B1 v2 User Manual V1.3 23/01/2018 USB-B1 v2 User Manual V1.3 23/01/2018 Table of Contents 1. Introduction...2 1.1 Device Overview... 2 1.2 System Overview... 3 1.3 Features... 3 1.4 Connectors... 4 1.4.1 USB Connector (J1)... 4 1.4.2 External

More information

RF900 LoRa Telemetry module V1.0

RF900 LoRa Telemetry module V1.0 1. General RF900 is a low cost, medium power, high performance transparent two way semi-duplex LoRa modulation transceiver with operation at 169/433/868/915 Mhz. It integrates with high speed MCU from

More information

LPM355X USB to Serial Converter

LPM355X USB to Serial Converter to Serial Converter Doc. Rev.0 (31/07/12) Features All-In-One to Serial Converter. 2.0 Full Speed compatible. Wide serial lines voltage range 2.7V to 5.5V. Baudrate up to 921.6Kbps. No external components

More information

RFID MODULE Mifare Read/Write Module SL025B User Manual Version 1.1 Jun 2010 StrongLink

RFID MODULE Mifare Read/Write Module SL025B User Manual Version 1.1 Jun 2010 StrongLink RFID MODULE Mifare Read/Write Module User Manual Version 1.1 Jun 2010 StrongLink CONTENT 1. MAIN FEATURES... 3 2. PINNING INFORMATION... 4 3. BAUD RATE SETTING... 5 4. COMMUNICATION PROTOCOL... 5 4-1.

More information

MF1-RW-TTL-PCB Mhz Mifare ISO14443A reader/writer module with TTL interface CONTENT 1. MAIN FEATURES...,, PINNING INFORMATION...

MF1-RW-TTL-PCB Mhz Mifare ISO14443A reader/writer module with TTL interface CONTENT 1. MAIN FEATURES...,, PINNING INFORMATION... MF1-RW-TTL-PCB1 13.56Mhz Mifare ISO14443A reader/writer module with TTL interface RFID MODULE CONTENT 1. MAIN FEATURES......,,...2 2. PINNING INFORMATION........2 3. BAUD RATE SETTING.........3 4. COMMUNICATION

More information

RFID Beginner s Kit Command Reference Manual Copyright 2003 Intensecomp Pte Ltd All rights reserved.

RFID Beginner s Kit Command Reference Manual Copyright 2003 Intensecomp Pte Ltd All rights reserved. RFID Beginner s Kit Command Reference Manual Copyright 2003 Intensecomp Pte td All rights reserved. Intensecomp Pte td 190 Middle Road, #19-05,Fortune Centre, Singapore 188979 Tel: +65 6769 5772 Fax: +65

More information

REV6 Multi Sector MIFARE Reader/Writer Data Sheet

REV6 Multi Sector MIFARE Reader/Writer Data Sheet 716-52 REV6 Multi Sector MIFARE Reader/Writer Data Sheet Overview The 716-52 REV6 multi sector MIFARE Reader/Writer is an intelligent 13.56MHz contactless reader writer designed to operate with the Mifare

More information

Universal RFID Socket board with RS232 / USB interface

Universal RFID Socket board with RS232 / USB interface Data Sheet UNI_RS232_USB.pdf 9 Pages Last Revised 03/09/09 Universal RFID Socket board with RS232 / USB interface The Universal RFID Socket board is the baseboard for the MicroRWD RFID reader modules from

More information

JMY600 Series IC Card Module

JMY600 Series IC Card Module NFC & MIFARE & ISO14443A & ISO14443B & ISO15693 & ISO7816 IC CARD MODULE JMY600 Series IC Card Module General Technical Manual (Revision 5.31) Jinmuyu Electronics Co. LTD April 22, 2018 Please read this

More information

Preliminary. PACKAGE - 28-pin MLP (5mm X 5mm) Example Circuit Diagram CP V. 48MHz Oscillator. USB Function Controller 512B EEPROM

Preliminary. PACKAGE - 28-pin MLP (5mm X 5mm) Example Circuit Diagram CP V. 48MHz Oscillator. USB Function Controller 512B EEPROM Preliminary Single-Chip USB to UART Bridge SINGLE-CHIP USB to UART DATA TRANSFER - Integrated USB Transceiver; No External Resistors Required - Integrated Clock; No External Crystal Required - Integrated

More information

S125 Multi-Purpose 125 KHz RFID Reader USER MANUAL. 9V/24V DC Operating Voltage, AC (optional) KHz RFID EM4100/2 Cards & Tags

S125 Multi-Purpose 125 KHz RFID Reader USER MANUAL. 9V/24V DC Operating Voltage, AC (optional) KHz RFID EM4100/2 Cards & Tags S125 Multi-Purpose 125 KHz RFID Reader 44 mm USER MANUAL MULTI PURPOSE 84 mm ONLINE & OFFLINE MODE BUILT-IN RELAY 125 KHz RFID EM4100/2 Cards & Tags 9V/24V DC Operating Voltage, AC (optional) 3 Online

More information

INFINITE. HF RFID Specification

INFINITE. HF RFID Specification INFINITE HF RFID Specification Power Supply 5Vdc (From USB) Interface USB to PC and RS-485 for long distance Frequency 13.56 Mhz Protocol ISO14443A/B, ISO16593, ISO18000-3, Tag-it Read/Write Distance 8

More information

WM1030 Rev Introduction. Ultra low power DASH7 Modem. Applications. Description. 868 / 915 MHz. Features. WIZZILAB Technical datasheet 1/10

WM1030 Rev Introduction. Ultra low power DASH7 Modem. Applications. Description. 868 / 915 MHz. Features. WIZZILAB Technical datasheet 1/10 WM1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Modem 868 / 915 MHz 1 Introduction

More information

Micro RWD MF-IC (Mifare/ICODE/ISO14443B) Reader (low power version with auxiliary outputs)

Micro RWD MF-IC (Mifare/ICODE/ISO14443B) Reader (low power version with auxiliary outputs) Data Sheet MF_ICBprot_030518.pdf 43 Pages Last Revised 03/05/2018 Micro RWD MF-IC (Mifare/ICODE/ISO14443B) Reader (low power version with auxiliary outputs) The MicroRWD MF-IC module is a complete contactless

More information

A1/B1 EB v2.0 User Manual V1.1 05/10/2017

A1/B1 EB v2.0 User Manual V1.1 05/10/2017 A1/B1 EB v2.0 User Manual V1.1 05/10/2017 Table of Contents 1. Device Overview...2 2. Electrical Characteristics...3 2.1 Test Conditions... 3 2.2 Absolute Maximum Ratings... 3 2.3 Operating Conditions...

More information

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features

SH1030 Rev Introduction. Ultra low power DASH7 Arduino Shield Modem. Applications. Description. 868 MHz. Features SH1030 Rev. 1.2 Applications Wireless sensor network Data acquisition equipment Security systems Industrial monitor and control Internet of things (IoT) Ultra low power DASH7 Arduino Shield Modem 868 MHz

More information

DTNFCSS UART YES Internal DTNFCUS USB YES Internal

DTNFCSS UART YES Internal DTNFCUS USB YES Internal NFC OEM Read/Write Module: DTNFCxx The DTNFCxx OEM NFC module combines in a single package both NFC controller and secure smart card controller. This Module supports Mifare family (ISO 14443A), FeliCa,

More information

ACR120 Technical Specifications Version 4.00

ACR120 Technical Specifications Version 4.00 Datenblatt / Specifications ACR120 Contactless Reader/Writer Otto-Hesse-Straße 19 / T5 D-64293 Darmstadt Phone +49 6151 9926567 Fax +49 6151 3689296 1.0 Introduction The ACR120 is a compact and cost-effective

More information

Micro RWD Quad-Tag Reader

Micro RWD Quad-Tag Reader Data Sheet RWD_QT.pdf 8 Pages Last Revised 08/05/06 Micro RWD Quad-Tag Reader The MicroRWD QT (Quad-Tag) version is a complete 125kHz reader solution for Hitag 1 (including Hitag S in Plain Memory mode),

More information

RFM-13X SERIES RF CARD READER/WRITER MODULE

RFM-13X SERIES RF CARD READER/WRITER MODULE SPECIFICTION Page 1/7 RFM-13X SERIES RF CRD REDER/WRITER MODULE SPECIFICTION Page 2/7 CONTENTS 1. OVERVIEW 2. BSIC SPECIFICTION 3. SPECIFICTION 4. INTERFCE DEFINITION 5. COMMUNICTION PROTOCOL SPECIFICTION

More information

Catalog 1. Overview Feature Application Block Diagram

Catalog 1. Overview Feature Application Block Diagram - 1 - Catalog 1. Overview... - 3-2. Feature... - 3-3. Application... - 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation... - 4-1) Power on Reset...- 4-2) Working Mode...- 5-3)

More information

Logosol Joystick Node LS-731

Logosol Joystick Node LS-731 Features 2 and 3 axis models Travel ±20 deg Non contact hall effect joystick Mechanical MTBF 15,000,000 cycles 3 pushbuttons Up to 2 stick pushbuttons 8 LEDs Member of Logosol s distributed motion control

More information

Micro RWD Quad-Tag Reader

Micro RWD Quad-Tag Reader Data Sheet RWD_QT.pdf 19 Pages Last Revised 09/08/11 Micro RWD Quad-Tag Reader The MicroRWD QT (Quad-Tag) version is a complete 125kHz reader solution for Hitag 1, Hitag S256/S2048 (Plain Memory mode),

More information

RFID A1 Module User Manual V1.183

RFID A1 Module User Manual V1.183 RFID A1 Module User Manual V1.183 Table of Contents 1 Introduction... 4 1.1 Device Overview... 4 1.2 Pinout... 5 1.3 Application... 6 2 Electrical Characteristics... 7 2.1 Test Conditions... 7 2.2 Absolute

More information

DRF1278DM LORA Long Range SX1278 Data Radio Modem V2.72

DRF1278DM LORA Long Range SX1278 Data Radio Modem V2.72 DRF1278DM LORA Long Range SX1278 Data Radio Modem V2.72 Features LoRa TM Frequency Spectrum 433Mhz ISM frequency band -138 dbm receive sensitivity 20dBm Max. output power Serial port wake-up Wireless wake-up

More information

Serial JPEG Camera Module Data Sheet

Serial JPEG Camera Module Data Sheet 4D SYSTEMS µcam529 Serial JPEG Camera Module Document Date: 15th July 2010 Document Revision: 2.0 2010 4D Systems www.4dsystems.com.au Page 1 of 20 4D SYSTEMS µcam Serial JPEG Camera Module Description

More information

Low-Power-Radio Transceiver IC

Low-Power-Radio Transceiver IC Addressed Mode With Acknowledge Broadcast Mode Automatic Retry Serial Interface Stand Alone Operation Achieves Maximum Range From RF Modules Flow Control Option Two Telemetry I/O Lines (addressed mode

More information

H1PROT.PDF 14 Pages Last Revised 02/11/06. Micro RWD H1/S Protocol

H1PROT.PDF 14 Pages Last Revised 02/11/06. Micro RWD H1/S Protocol Data Sheet H1PROT.PDF 14 Pages Last Revised 02/11/06 Micro RWD H1/S Protocol The MicroRWD H1/S version is a complete reader and tag acceptance solution for Hitag 1 RF transponders (including Hitag S256

More information

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID125 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID125 User Manual All boards produced by Olimex are ROHS compliant Rev.A, February 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID125 is an RFID station,

More information

JP2380 Sensor Module. JP Sensor. Features: MCU Embedded. Specifications. Sensor with total solution

JP2380 Sensor Module. JP Sensor. Features: MCU Embedded. Specifications.   Sensor with total solution JP Sensor Sensor with total solution JP2380 is an ultra-thin CMOS fingerprint sensor combined with MCU which can be widely applied in smart card since it is neat and compact. Cermet-like coating provides

More information

1. General Description

1. General Description 1. General Description HPTZ01X (HPTZ01-TTL,HPTZ01P-TTL)Serial ZigBee module is development designed by Ember ZigBee chip EM35x. It is a module base on IEEE 802.15.4-2003 standard for the 2.4G ISM band.

More information

MOD-RFID125-BOX User Manual

MOD-RFID125-BOX User Manual MOD-RFID125-BOX User Manual All boards produced by Olimex are ROHS compliant Rev.B, May 2011 Copyright(c) 2011, OLIMEX Ltd, All rights reserved Page 1 INTRODUCTION: FEATURES: MOD-RFID125-BOX is an RFID

More information

Smart Label Programming Guide for SLR200. RWM600x ActiveX Control GNetPlus Protocol Command Set

Smart Label Programming Guide for SLR200. RWM600x ActiveX Control GNetPlus Protocol Command Set Smart Label Programming Guide for SLR200 RWM600x ActiveX Control Command Set REVA October 05, 2009 Table of Contents Programming Guide 3 Function block 3 Commands Table4 Commands Description6 ANNEX A Error

More information

MB89R118. High-speed RFID LSI FerVID family TM. ASSP ISO/IEC15693 Compliant FRAM Embedded DS E DESCRIPTION FEATURES

MB89R118. High-speed RFID LSI FerVID family TM. ASSP ISO/IEC15693 Compliant FRAM Embedded DS E DESCRIPTION FEATURES FUJITSU SEMICONDUCTOR DATA SHEET DS04-33101-3E ASSP ISO/IEC15693 Compliant FRAM Embedded High-speed RFID LSI FerVID family TM MB89R118 DESCRIPTION The MB89R118 is an LSI device that has built-in high-speed,

More information

RFID MODULE Mifare Reader / Writer SL032 User Manual Version 3.1 July 03, 2017 StrongLink

RFID MODULE Mifare Reader / Writer SL032 User Manual Version 3.1 July 03, 2017 StrongLink RFID MODULE Mifare Reader / Writer SL032 User Manual Version 3.1 July 03, 2017 StrongLink CONTENT 1. MAIN FEATURES... 3 2. PINNING INFORMATION... 4 3. BAUD RATE SETTING... 5 4. COMMUNICATION PROTOCOL...

More information

RFID Card Reader, Serial (#28140) RFID Card Reader, USB (#28340)

RFID Card Reader, Serial (#28140) RFID Card Reader, USB (#28340) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL

SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL SM125 System SM125-IC 125 KHz RFID Chip SM125-M1 125 KHz RFID Module SM125-EK Evaluation Kit SMRFID 3.0 Software USER MANUAL 2 1. INTRODUCTION 4 1.1 125 KHz RFID Systems 5 1.2 Evaluation Board Layout View

More information

ACR120 Contactless Reader/Writer. 1.0 Introduction. 2.0 Features. 3.0 Supported Card Types. 6.4cm. 9.9cm

ACR120 Contactless Reader/Writer. 1.0 Introduction. 2.0 Features. 3.0 Supported Card Types. 6.4cm. 9.9cm ACR120 Contactless Reader/Writer 1.0 Introduction The ACR120 is a compact and cost-effective contactless reader and writer. It is developed on the 13.56MHz contactless smart card (RFID) technology, supporting

More information

BASIC FEATURES APPLICATIONS ** PRELIMINARY DOCUMENT-SUBJECT TO CHANGE **

BASIC FEATURES APPLICATIONS ** PRELIMINARY DOCUMENT-SUBJECT TO CHANGE ** DLP-RFID2P ** PRELIMINARY DOCUMENT-SUBJECT TO CHANGE ** HF RFID READER WITH USB INTERFACE AND BUILT-IN ANTENNA BASIC FEATURES Built-In Antenna USB Interface Standalone Operation for ISO15693 FCC / IC /

More information

User s Manual Closer to Real, Zigbee Module ZIG-100. Wireless Communication. ROBOTIS CO.,LTD

User s Manual Closer to Real, Zigbee Module ZIG-100. Wireless Communication. ROBOTIS CO.,LTD User s Manual 2006-07-06 Closer to Real, Wireless Communication ROBOTIS CO.,LTD. www.robotis.com +82-2-2168-8787 Contents 1. Page 02 2. Zigbee Setting Page 06 3. PC Interface Zig Board Schematic Page 10

More information

PPrerelimin. Reader Series ISO Library Reference Guide. S4100 Multi-Function Reader Module RF-MGR-MNMN

PPrerelimin. Reader Series ISO Library Reference Guide. S4100 Multi-Function Reader Module RF-MGR-MNMN PPrerelimin Reader Series 4000 S4100 Multi-Function Reader Module RF-MGR-MNMN ISO 15693 Library Reference Guide 11-06-21-707 Rev 1 July 2004 1 Second Edition - July 2004 This is the second edition of this

More information

FRW 13.56MHz - ISO15693 READER/WRITER

FRW 13.56MHz - ISO15693 READER/WRITER Ek20 RFID TRANSPONDER TECHNOLOGY DOC. 147-R4 FRW 13.56MHz - ISO15693 READER/WRITER FRW-PCB FRW-ONDA FRW-SHELL FRW-BOX FRW-USBN FRW-POCKET USBN 1.0 FEATURES AND SPECIFICATIONS The FRW is a Front Side Serial

More information

MIFARE Secure OEM Reader Module Data Sheet

MIFARE Secure OEM Reader Module Data Sheet 724-10 MIFARE Secure OEM Reader Module Data Sheet General Description The 724-10 MIFARE Secure OEM Reader Module is a fully encapsulated device containing all the electronics required to perform a secure

More information

SDR-IQ Serial Port. Rev Nov 1, 2011

SDR-IQ Serial Port. Rev Nov 1, 2011 SDR-IQ Serial Port Rev. 1.00 Nov 1, 2011 www.rfspace.com This document describes the proceedures needed to update the SDR-IQ's firmware. Table of Contents 1. DE9 Connector Description... 3 2. Functionality...

More information

SC20MPC: 2 Mega Pixels Serial JPEG Camera User Manual. Introduction

SC20MPC: 2 Mega Pixels Serial JPEG Camera User Manual. Introduction 2 Mega Pixels Serial JPEG Camera SC20MPC User Manual, Rev. F (August 2018) For latest user manual, please visit: Introduction The SC20MPC Camera is a highly integrated serial JPEG camera module which can

More information

NITGEN FIM50 Series. Datasheet FIM50N. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU

NITGEN FIM50 Series. Datasheet FIM50N. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU NITGEN FIM50 Series Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet Version 1.00 NITGEN Page: 1 Copyright 2010 NITGEN Co., Ltd. ALL RIGHTS RESERVED Serial Number: Specifications

More information

WLS-TC Specifications

WLS-TC Specifications Specifications Document Revision 1.0, February, 2010 Copyright 2010, Measurement Computing Corporation Typical for 25 C unless otherwise specified. Specifications in italic text are guaranteed by design.

More information

SL2S General description ICODE DNA. 1.1 Contactless energy and data transfer. 1.2 Anticollision. 1.3 Security and privacy aspects

SL2S General description ICODE DNA. 1.1 Contactless energy and data transfer. 1.2 Anticollision. 1.3 Security and privacy aspects 374730 1. General description The is a leading-edge HF tag IC targeting brand protection tagging applications which require HF long read range as well as cryptographic authentication check.the security

More information

HMC1022 Digital Compass

HMC1022 Digital Compass Key Features Based on Honeywell s HMC1022 solid-state magnetic sensor Choice of 2 Interface Options (UART/I2C) Standard Pin Headers come soldered Plug and Play Module SPECIFICATIONs Angular Measuring Range

More information

ASSP ISO/IEC Compliant FRAM Embedded. High-speed RFID LSI FerVID family TM

ASSP ISO/IEC Compliant FRAM Embedded. High-speed RFID LSI FerVID family TM FUJITSU SEMICONDUCTOR DATA SHEET DS04-33102-2E ASSP ISO/IEC 15693 Compliant FRAM Embedded High-speed RFID LSI FerVID family TM MB89R119 DESCRIPTION The MB89R119 is a vicinity type of RFID LSI device embedded

More information

RFID: Read and Display V2010. Version 1.1. Sept Cytron Technologies Sdn. Bhd.

RFID: Read and Display V2010. Version 1.1. Sept Cytron Technologies Sdn. Bhd. PR8-B RFID: Read and Display V2010 Version 1.1 Sept 2010 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion

More information

MOD-RFID1356 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved

MOD-RFID1356 User Manual. All boards produced by Olimex are ROHS compliant. Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved MOD-RFID1356 User Manual All boards produced by Olimex are ROHS compliant Rev.A, May 2008 Copyright(c) 2008, OLIMEX Ltd, All rights reserved INTRODUCTION: FEATURES: MOD-RFID1356 is an RFID station, able

More information

JMY600 Series IC Card Module

JMY600 Series IC Card Module MIFARE & ISO14443A & ISO14443B & ISO7816 & ISO15693 IC CARD MODULE JMY600 Series IC Card Module MIFARE 1K Card Operation Guide (Revision 1.02) Jinmuyu Electronics Co., LTD March 31, 2015 Please read this

More information

USB-BASED 8-CHANNEL DATA ACQUISITION MODULE

USB-BASED 8-CHANNEL DATA ACQUISITION MODULE DLP-IO8-G *LEAD-FREE* USB-BASED 8-CHANNEL DATA ACQUISITION MODULE Features: 8 Channels: Digital I/O, Analog In, Temperature USB Port Powered USB 1.1 and 2.0 Compatible Interface Small Footprint; Easily

More information

F USB Charger Controller F Release Date: Dec., 2011 Version: V0.11P. Nov., 2011 Data Sheet

F USB Charger Controller F Release Date: Dec., 2011 Version: V0.11P. Nov., 2011 Data Sheet USB Charger Controller Release Date: Dec., 2011 Version: V0.11P F75204 Datasheet Revision History Version Date Page Revision History Data Brief 2011/10 - Data Brief 0.10P 2011/ 11 Up Date AC/DC SPECs 0.11P

More information

SNR610. Embedded network node module SNR610. Description. Feature. Application. SNR610 is highly integrated network module.

SNR610. Embedded network node module SNR610. Description. Feature. Application. SNR610 is highly integrated network module. Embedded network node module SNR610 Description SNR610 is highly integrated network module. It adopts high performance Silicon Lab Si4432 RF chip. Si4432 has high reception sensitivity and 100mW output

More information

PRM92K20CE UHF RFID Module. User s Manual

PRM92K20CE UHF RFID Module. User s Manual PRM92K20CE UHF RFID Module User s Manual Contents 1 Revision History... 3 2 Introduction... 4 2.1 Package configuration... 4 2.2 Features... 5 3 DK description... 6 3.1 PRM92x10C_CTRL... 6 4 Specifications...

More information

Communication of passive RFID Reader and. FOX3-2G/3G/4G series via RS-232 serial link. and its use to identify RFID tags in

Communication of passive RFID Reader and. FOX3-2G/3G/4G series via RS-232 serial link. and its use to identify RFID tags in THIS DOCUMENT IS AVAILABLE AT HTTP://WWW.FALCOM.DE/ Communication of passive RFID Reader and FOX3-2G/3G/4G series via RS-232 serial link and its use to identify RFID tags in transportation and access management

More information

Micro RWD H2 Protocol

Micro RWD H2 Protocol Data Sheet H2PROT.PDF 9 Pages Last Revised 04/11/09 Micro RWD H2 Protocol The MicroRWD H2 version is a complete reader and tag acceptance solution for Hitag 2 RF transponders. The solution only needs a

More information

PIC-I/O Multifunction I/O Controller

PIC-I/O Multifunction I/O Controller J R KERR AUTOMATION ENGINEERING PIC-I/O Multifunction I/O Controller The PIC-I/O multifunction I/O controller is compatible with the PIC-SERVO and PIC-STEP motor control modules and provides the following

More information

REV2 Mifare RS-485 OEM Proximity Reader Data Sheet

REV2 Mifare RS-485 OEM Proximity Reader Data Sheet 783-52 REV2 Mifare RS-485 OEM Proximity Reader Data Sheet Overview The 783-52 RS-485 OEM proximity reader consists of three parts: a potted unit containing the electronics, a front cover, and an optional

More information

NITGEN FIM5360. Datasheet FIM5360. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU

NITGEN FIM5360. Datasheet FIM5360. Version Stand-Alone Fingerprint Identification Device with Built-in CPU. Standalone with built-in CPU NITGEN FIM5360 Stand-Alone Fingerprint Identification Device with Built-in CPU Datasheet Version 1.00 NITGEN Page: 1 Copyright 2010 NITGEN Co., Ltd. ALL RIGHTS RESERVED Serial Number: Specifications can

More information

ACR120 Technical Specifications version 3.1 January 2007

ACR120 Technical Specifications version 3.1 January 2007 Version 3.1 01-2007, Email: info@acs.com.hk Website: www.acs.com.hk ACR120 Contactless Reader/Writer 1.0 Introduction The ACR120 is a compact and cost-effective contactless reader and writer. It is developed

More information

READ/WRITE MODULES (RWM) RLS

READ/WRITE MODULES (RWM) RLS HOUSING M READ/WRITE DISTANCE mm* HF RFID SYSTEM READ/WRITE MODULES (RWM) RLS-- ü M Metal threaded housing ü Sensing face of PBTP ü Insensible to dirt ü IO-Link V. Mx ü x PNP output in SIO mode configurable

More information

UHF RFID serial Interface protocol V2.2

UHF RFID serial Interface protocol V2.2 YR903 UHF RFID serial Interface protocol V2.2 1 SPECIFICATION OF THE DATA PACKET 3 1.1 RS-232 CONFIGURATION 3 1.2 DATA PACKET DEFINITION 3 1.2.1 HOST COMMAND DATA PACKET DEFINITION 3 1.2.2 RESPONSE PACKET

More information

WJM3000G. Next Generation RFID Reader Module. Key Features. Applications: Printers Item-level RFID Mobile & handheld devices Fixed readers

WJM3000G. Next Generation RFID Reader Module. Key Features. Applications: Printers Item-level RFID Mobile & handheld devices Fixed readers Key Features x Multi-protocol support: ISO 18000-6C (Gen2) & ISO 18000-6B x Dynamic RF output power: +18 dbm to +30 dbm (1W) range x Two antenna ports for added flexibility x Power saving modes to extend

More information

Security & Chip Card ICs SLE 55R04. Intelligent 770 Byte EEPROM with Contactless Interface complying to ISO/IEC Type A and Security Logic

Security & Chip Card ICs SLE 55R04. Intelligent 770 Byte EEPROM with Contactless Interface complying to ISO/IEC Type A and Security Logic Security & Chip Card ICs SLE 55R04 Intelligent 770 Byte EEPROM with Contactless Interface complying to ISO/IEC 14443 Type A and Security Logic Short Product Information January 2001 Short Product Information

More information

ASSP ISO/IEC Compliant FRAM Embedded

ASSP ISO/IEC Compliant FRAM Embedded FUJITSU SEMICONDUCTOR DATA SHEET DS411-00002-2v0-E ASSP ISO/IEC 15693 Compliant FRAM Embedded TM High-speed RFID LSI MB89R119B DESCRIPTION The MB89R119B is a vicinity type of RFID LSI device embedded with

More information

Hints and tips when using RC1xx0 RF Modules

Hints and tips when using RC1xx0 RF Modules AN001 : HI NTSANDTI PS WHENUSI NGRC1 XX0RFMODULES WeMakeEmbeddedWi r el ess Easyt ouse Hints and tips when using RC1xx0 RF Modules By H.Moholdt Keywords Interfacing to RS232/RS485/RS422 level shifters

More information

AT88RF1354 SPI User Guide For CryptoRF

AT88RF1354 SPI User Guide For CryptoRF AT88RF1354 SPI User Guide For CryptoRF Table of Contents Section 1 Introduction... 1-1 1.1 Product Description... 1-1 1.2 System Diagram... 1-1 1.3 Scope...1-2 1.4 Conventions... 1-2 Section 2 AT88RF1354

More information

LM780 Bluetooth Serial Data Module 25m Distance with On-Board Antenna

LM780 Bluetooth Serial Data Module 25m Distance with On-Board Antenna Bluetooth Serial Data Module 25m Distance with On-Board Antenna Product: 1 General Description is LM Technologies Ltd Class 2 Bluetooth Data module with on-board chip antenna. This module is a CSR Bluecore

More information

UART/USB Interface board Data sheet for UHF RFID Reader/Writer module LXRFZZUBBA-042

UART/USB Interface board Data sheet for UHF RFID Reader/Writer module LXRFZZUBBA-042 1. General Descriptions LXRFZZUAAA-042 is an interface board for UHF RFID reader writer module, LXRFZZUAAA-027/030/032. [Features] -Signal conversion : UART USB(HID) -100% green material for RoHS compliance

More information

RS485 MODBUS Module 8I8O

RS485 MODBUS Module 8I8O Expansion Module 8 digital inputs, 8 digital outputs Version 2.2 12/01/2014 Manufactured for Thank you for choosing our product. This manual will help you with proper support and proper operation of the

More information

SC03MPC: 0.3 Mega Pixels Serial JPEG Camera Infrared User Manual. Introduction

SC03MPC: 0.3 Mega Pixels Serial JPEG Camera Infrared User Manual. Introduction 0.3 Mega Pixels Serial JPEG Camera Infrared SC03MPC User Manual, Rev. C For latest user manual, please visit: Introduction The SC03MPC Camera is a highly integrated serial JPEG camera module which can

More information

RS232-ADC16/24 Manual

RS232-ADC16/24 Manual RS232-ADC16/24 Manual Version 1.11 Copyright taskit GmbH 2009 www.taskit.de Page 1/22 Table of contents 1 Features...3 2 Introduction...3 3 Bringing into service...4 4 Application Sample...5 5 Frame layout...6

More information

ib technology Data Sheet RWD_QT_LP_ pdf 20 Pages Last Revised 03/05/2018 Micro RWD Quad-Tag (low power) Reader

ib technology Data Sheet RWD_QT_LP_ pdf 20 Pages Last Revised 03/05/2018 Micro RWD Quad-Tag (low power) Reader Data Sheet RWD_QT_LP_030518.pdf 20 Pages Last Revised 03/05/2018 Micro RWD Quad-Tag (low power) Reader The MicroRWD QT (Quad-Tag) low-power version is a complete 125kHz reader solution for Hitag 1, Hitag

More information

The SC03MPA camera is capable of outputting JPEG format images and PAL/NTSC video (Video is available only per request).

The SC03MPA camera is capable of outputting JPEG format images and PAL/NTSC video (Video is available only per request). SC03MPA: 0.3 Mega Pixels Serial JPEG Camera User Manual 0.3 Mega Pixels Serial JPEG Camera SC03MPA User Manual, Rev. D (2018) For latest user manual, please visit: Introduction The SC03MPA Camera is a

More information

Card Dispensing/Collecting Machine

Card Dispensing/Collecting Machine A 1 OF 36 2010. 03. 02. Card Dispensing/Collecting Machine Series. 3,,. http://www.securetech-corp.com E-mail : sales@securetech-corp.com A 2 OF 36 2010. 03. 02. REVISION HISTORY No DATE DESCRIPTION REV

More information