EM4100 125Khz RFID Card Read Module

Ready Stock 1 Unit

Harga Rp.  195.000 (kontak untuk ketersediaan produk)
harga diluar ongkos kirim

Isi Paket
  • 1x board RFID card reader 125Khz
  • 1x wire sensor
  • 1x kabel jumper Male - Female (selama persediaan masih ada)



Product Description
RDM630 125KHz card mini-module is designed for reading code from 125KHz/ 134.2KHz card compatible read-only tags and

read/write card . It can be applied in office/home security, personal identification, access control, anti-forgery, interactive toy and production control systems etc.

RDM630 Series non contact RFID module, use the advanced RF receiving circuit and embedded MCU design, combing with high efficient decoding algorithm, to finish the data receive of EM4100 and all the compatible cards.

This is a very popular RFID card read module for arduino users, it can read 125K EM4100 series RFID card. This module is easy to use, serial port connect to arduino MCU after power up, when RFID car enter into card reading range, this module will send the card number to arduino by UART

You can further connect relay arduino shield to your arduino in order to enable the simple door keeper controlling system.

Wiring
  • Pins are defined as follows:
  • P1 port : 1.TX 2.RX 3.reserve 4.GND 5.VCC
  • P2 port : Antenna coil
  • P3 port : 1.LED 2.VCC 3.GND

The arduino connection
  • With module :TX to RX ; RX to TX; VCC to 5V; GND to GND
  • With LCD: RS => pin 12 RW => pin 11 EN => pin 10
  •  D4, D5, D6, D7 => pins 5, 4, 3, 2


DEMO Code for Arduino

#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
unsigned char card[12];
void setup()
{

  Serial.begin(9600);  
  lcd.print(“Card ID :”);
}

void loop()
{
  unsigned char i=0;
  for(;;)
  {
    if (Serial.available()>0)
    {
       card[i]=Serial.read();
       i++;
    }
    if (i>=11)
    {
      i=0;
      decode();
    }
  }
}
 

void decode()
{
  lcd.setCursor(0, 1);
  unsigned char p;
  for(p=3;p<11;p++)
  {
    lcd.print(card[p]);
  }
}





Popular posts from this blog

Paket Display LCD 16x2 Character dan 1602 IIC Converter Board

Arduino One Compatible PTH Kit

USBASP Programmer (Double Power 3.3V/5V)