RFID Reader/Write Module C (UART interface)

CuteDigi
$29.99
Be the first to leave a review
SKU RFID_HY502C_BD3
Weight 0.10 LBS
Stock
Wishlist

Create Wishlist

RFID Reader/Write Module (UART  interface)

HY502 series of RFID reader/writer modules are based on non-contact card reader ASCI chip compatible with ISO14443 standard. It uses  600nm CMOS EEPROM technology, supports ISO14443 typeA protocol, and also supports the MIFARE standard encryption algorithm.  The chipset integrates analog modulation and demodulation circuits, only requires minimal peripheral circuits to function. The module supports UART interface.  The digital circuits has dual working voltages mode, TTL and CMOS.  The HY502 module is targeting water, electricity, gas meters, vending machines, access control, elevators, drinking fountains, telephone billing system or other identification card reader system applications. 

Users can simply select the desired interfaces to harvest the full operation of the system and do not need to struggle with the complicated radio base station design.

HY502 series supports Mifare One S50, S70, Ultra Light & Mifare Pro, FM11RF08 and other compatible cards. It can be set to automatically find cards, by default, to automatically find cards.

HY502 series is a low-power modules, wide-voltage 2.7 ~ 5.5V, using an integrated module with embedded antenna can significantly reduce PCB size.

Features

Supports UART interface.

  • Automatically detect the card close to the antenna area, and generate an interrupt signal to the host MCU.
  • Employ chipset of ISO14434A standard, and support MIFARE standard encryption algorithm;
  • Working voltage is between 2.7V- 5.5V, has TTL/CMOS voltage modes.
  • Use industrial-grade high-performance processor, built-in hardware watchdog, with high reliability;
  • Anti-jamming processing and excellent EMC performance;
  • A few simple commands can cover the complicated underlying read and write card operations.

 

Arduino RFID Tutorial

Hardware needed: the arduino mega.

A picture of the hardware:

 

 

The arduino mega code:

 

 

int incomingByte = 0; // for incoming serial data
long lastPulse = 0;


void setup(){
  
  Serial.begin(9600);
  Serial1.begin(19200);
  
 
}

void loop() 
{
  int cmd[]={0xaa, 0xbb, 0x02, 0x20, 0x22}; 
  
  // send data only when you receive data:
 if (Serial1.available() > 0) {
  // read the incoming byte:
  incomingByte = Serial1.read();

  // say what you got:
  Serial.print(incomingByte, BYTE);
 }
   
   
    if(millis() - lastPulse > 1000) {
      
      lastPulse=millis();
      
   
      Serial1.print(cmd[0], BYTE);
      Serial1.print(cmd[1], BYTE);
      Serial1.print(cmd[2], BYTE);
      Serial1.print(cmd[3], BYTE);
      Serial1.print(cmd[4], BYTE);
    }


}

 

When present the card (http://www.cutedigi.com/product_info.php?products_id=4309t)%20to the antenna area:

 

Download:

      User manual

      I2C example code