首页 > 器件类别 > 开发板/开发套件/开发工具

32398

RFID Transponder Tools RFID R/W 20 mm Titan World Tag

器件类别:开发板/开发套件/开发工具   

厂商名称:Parallax

器件标准:

下载文档
32398 在线购买

供应商:

器件:32398

价格:-

最低购买:-

库存:点击查看

点击购买

器件参数
参数名称
属性值
Product Attribute
Attribute Value
制造商
Manufacturer
Parallax
产品种类
Product Category
RFID Transponder Tools
RoHS
Details
产品
Product
RFID Accessories
Dimensions
20 mm
工厂包装数量
Factory Pack Quantity
1
文档预览
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
RFID Read/Write Module, Serial (#28440)
Designed in cooperation with Grand Idea Studio (www.grandideastudio.com), the Parallax Radio
Frequency Identification (RFID) Read/Write Module provides a low-cost solution to read and write passive
RFID transponder tags up to 3 inches away. The RFID transponder tags provide a unique serial number
and can store up to 116 bytes of user data, which can be password protected to allow only authorized
access.
The RFID Read/Write Module can be used in a wide variety of hobbyist and commercial applications,
including access control, user identification, robotics navigation, inventory tracking, payment systems, car
immobilization, and manufacturing automation.
Features
Low-cost method for reading and writing
passive, 125 kHz RFID transponder tags
Up to 116 bytes of user data storage on a
single tag
Optional security features prevent tag from
being read or written without password
Bi-color LED for visual indication of status
Key Specifications
Power requirements: +5 VDC; < 10 mA idle,
approx. 100-200 mA active
Communication: asynchronous serial 9600 bps,
(8N1); 5 V TTL-level, non-inverted
Dimensions: 3.25 x 2.45 in (8.26 x 6.2 cm)
RFID Tag Compatibility
The RFID Read/Write Module works exclusively with
the EM Microelectronics EM4x50 1kbit R/W
transponder tags. A variety of different tag types and
styles exist, with the most popular ones made available
from Parallax.
Each tag contains a unique, read-only serial number (one of 2
32
, or 4,294,967,296 possible combinations)
and 116 bytes of user data area stored in a non-volatile EEPROM (Electrically Erasable Read Only
Memory). The user data area can be optionally secured with a 32-bit password to allow only authorized
read and write operations.
The RFID Read/Write Module provides, with a single command, legacy support for the EM
Microelectronics EM4100 read-only tags that are used with Parallax’s RFID Card Reader Serial (#28140)
and USB (#28340).
Copyright © Parallax Inc.
RFID Read/Write Module, Serial (#28440)
v1.0 6/29/2010 Page 1 of 10
Connections
The RFID Read/Write Module easily interfaces to any host microcontroller using only four connections
(VCC, SIN, SOUT, GND).
Pin
1
2
3
4
Pin Name
VCC
SIN
SOUT
GROUND
Type
P
I
O
G
Function
System power. +5V DC input.
Serial input from host. TTL-level interface, 9600 bps, 8 data
bits, no parity, 1 stop bit.
Serial output to host. TTL-level interface, 9600 bps, 8 data bits,
no parity, 1 stop bit.
System ground. Connect to power supply’s ground (GND)
terminal.
Note: Type: I = Input, O = Output, P = Power, G = Ground
Use the following example circuit for connecting the Parallax RFID Read/Write Module:
Copyright © Parallax Inc.
RFID Read/Write Module, Serial (#28440)
v1.0 6/29/2010 Page 2 of 10
Usage
There are many ways to use the RFID Read/Write Module and associated tags, but the three most
common are as follows:
1) Read Only: Read the tag’s unique, non-changing 32-bit serial number
2) Read/Write: Read from and write up to 116 bytes of publicly accessible user data on the tag
3) Read/Write (Protected): Read from and write up to 116 bytes of password-protected user data
on the tag. In this mode, you must enter the correct 32-bit password in order for read and write
operations to be successful.
The RFID Read/Write Module is controlled by the host via a serial communications interface. The unit
waits in an idle state until it receives a valid header and command from the host, at which time the
module will perform the command and return a status/error byte indicating a success or failure and
command-specific data (if any). The module will then re-enter the idle state and wait for the next valid
header and command.
A visual indication of the RFID Read/Write Module’s state is given with the on-board LED (Light Emitting
Diode). When the module is successfully powered-up and is in an idle state, the LED will be GREEN;
when the module is in an active state (for example, searching for a valid tag or performing an operation
on the tag), the LED will be RED.
The face of the tag should be held parallel to the front or back face of the antenna (where the majority of
RF energy is emitted). If the tag is held sideways (for example, perpendicular to the antenna), you'll
either get no reading or a poor reading distance. Only one transponder tag should be held up to the
antenna at any time. The use of multiple tags at one time will cause tag collisions and the reader may
not detect any of them. The tags available in the Parallax store have a read distance of approximately
3 inches. Actual distance may vary slightly depending on the size of the transponder tag and
environmental conditions of the application.
Communication Protocol
The RFID Read/Write Module is controlled by the host via a standard, asynchronous serial
communications interface configured at 9600 bps, 8 data bits, no parity, 1 stop bit, and least significant
bit first (8N1). The serial data expected and transmitted by the RFID Read/Write Module is 5V TTL-level,
non-inverted.
To communicate with the RFID Read/Write Module, the user must first send a three-byte header string of
!RW (in ASCII), followed by the desired single-byte command (in hexadecimal). Certain commands
require additional data to be sent along with the command. A status/error byte and a varying number of
data bytes will be returned depending on the command called.
Copyright © Parallax Inc.
RFID Read/Write Module, Serial (#28440)
v1.0 6/29/2010 Page 3 of 10
Command Set
0x01: RFID_Read
Read data from a specified address
Input: Address location (1 byte), valid locations are 1-33 decimal
Output: Status byte (1 byte) + data (4 bytes)
Example:
SEROUT RFID_TX, Baud, ["!RW", RFID_Read, ADDR_Serial]
SERIN RFID_RX, Baud, [err, STR data\4]
' Read tag's serial number
' Get status byte & data bytes
0x02: RFID_Write
Write data to a specified address
Input: Address location (1 byte), valid locations are 3-31 decimal + data (4 bytes)
Output: Status byte (1 byte)
Example:
' Write $FEEDBEEF to address 3 (User Data Area)
SEROUT RFID_TX, Baud, ["!RW", RFID_Write, 3, $FE, $ED, $BE, $EF]
SERIN RFID_RX, Baud, [err] ' Get status byte
Note: After writing the specified data to the tag, the RFID Read/Write Module automatically performs a
read function to verify that the data has properly been written.
0x03: RFID_Login
Login to the tag (required to use password protection features)
Input: Password (4 bytes), default = 0x00000000
Output: Status byte (1 byte)
Example:
' Login to tag with password
SEROUT RFID_TX, Baud, ["!RW", RFID_Login, $00, $00, $00, $00]
SERIN RFID_RX, Baud, [err]
' Get status byte
0x04: RFID_SetPass
Change the tag’s password
Input: Current password (4 bytes) + new password (4 bytes)
Output: Status byte (1 byte)
Example:
' Change password from current ($00000000) to new ($FEEDBEEF)
SEROUT RFID_TX, Baud, ["!RW", RFID_SetPass, REP $00\4, $FE, $ED, $BE, $EF]
SERIN RFID_RX, Baud, [err] ' Get status byte
Copyright © Parallax Inc.
RFID Read/Write Module, Serial (#28440)
v1.0 6/29/2010 Page 4 of 10
0x05: RFID_Protect
Enable (lock) or disable (unlock) the tag’s password protection.
Input: Mode (1 byte), 0x00 to unlock, 0x01 to lock
Output: Status byte (1 byte)
Example:
SEROUT RFID_TX, Baud, ["!RW", RFID_Protect, 1] ' Lock the tag
SERIN RFID_RX, Baud, [err]
' Get status byte
Note: When the tag is locked, a successful login using the RFID_Login command is required before you
can enable/disable password protection, change the tag’s password, or read/write to the tag. If the tag is
locked and you are not successfully logged in, the RFID_Read command will return four bytes of 0x00 in
place of the actual user data and the RFID_Write command will return an error.
0x06: RFID_Reset
Log out and reset the tag.
Input: None
Output: Status byte (1 byte)
Example:
SEROUT RFID_TX, Baud, ["!RW", RFID_Reset]
SERIN RFID_RX, Baud, [err]
' Reset the tag
' Get status byte
Note: All user data will remain stored on the tag. You will need to re-login using RFID_Login if you want
to access a locked tag after calling this command. You can also reset the tag by removing it from the
proximity of the RFID Read/Write Module.
0x0F: RFID_ReadLegacy
Read the 40-bit unique serial number from an EM Microelectronics EM4100 read-only tag (used with
Parallax’s RFID Card Reader Serial, #28140, and USB, #28340).
Input: None
Output: Header (1 byte) + data (10 bytes) + footer (1 byte)
Example:
SEROUT RFID_TX, Baud, ["!RW", RFID_ReadLegacy]
SERIN RFID_RX, Baud, [header, STR data\10, footer]
' Read EM4100 unique serial #
' Get header, data, and footer
Note: The header and footer are used to identify that a correct string has been received from the
reader (they correspond to a line feed and carriage return characters, respectively). The middle ten bytes
are the tag's unique ID sent in a printable ASCII string. For example, for a tag with a valid ID of
0F0184F07A, the following bytes would be sent: 0x0A, 0x30, 0x46, 0x30, 0x31, 0x38, 0x34, 0x46, 0x30,
0x37, 0x41, 0x0D.
Copyright © Parallax Inc.
RFID Read/Write Module, Serial (#28440)
v1.0 6/29/2010 Page 5 of 10
查看更多>
用一个按键通过INT0中断计数,如何防抖?
用INT0中断,用一个按键计数(即按一下键,中断一次,数字加1),然后根据计数器的值去完成不同的任...
rjx Microchip MCU
433M天线
433M天线有人用过 玻璃钢材质的吗? 哪种比较好? 433M天线 就用过普通的塑料壳的 哪种...
hinii23 RF/无线
三、C语言基础、命名规则及良好习惯.doc
三、C语言基础、命名规则及良好习惯 一、 C语言基础 只挑选个别难以理解的在这里进行说明: 1...
muter999 stm32/stm8
控制多个uln2003驱动步进电机,如何防止电流过大?
一共12个uln2003和步进电机,因为输入低电平时uln2003输出高电平,所以一上电就会迅速发热...
sgz10010010 嵌入式系统
实时控制技术满足实时工业通信发展的需求 —— 第2部分
用于C2000 微控制器(MCU)的EtherCAT从站堆栈解决方案的市场机遇,并介绍了从站...
fish001 微控制器 MCU
求助!!PWM的问题!
我想用timerB输出pwm的信号,p4.0和p4.1我在xin 与xout之间接了8M晶振,但当我...
yang3509771 微控制器 MCU
热门器件
热门资源推荐
器件捷径:
A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 AA AB AC AD AE AF AG AH AI AJ AK AL AM AN AO AP AQ AR AS AT AU AV AW AX AY AZ B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 BA BB BC BD BE BF BG BH BI BJ BK BL BM BN BO BP BQ BR BS BT BU BV BW BX BY BZ C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 CA CB CC CD CE CF CG CH CI CJ CK CL CM CN CO CP CQ CR CS CT CU CV CW CX CY CZ D0 D1 D2 D3 D4 D5 D6 D7 D8 D9 DA DB DC DD DE DF DG DH DI DJ DK DL DM DN DO DP DQ DR DS DT DU DV DW DX DZ
需要登录后才可以下载。
登录取消