Wish List 0

Em18 Rfid 125Khz Rs232 Output

Rs. 293.00 Rs. 323.00

  • Product Code: RFID
  • SKU - SE-3754
  • Availability: In Stock
  • Price in reward points: 4
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
This is a extremely good little RFID Reader Module from Innovations, similar to the ID fashions (the difference being no silicone safety at the lower back). If you need an less expensive manner to get started out with RFID, this is a extremely good little module.

Just strength the module, and it's going to study any RFID card within range. It will output the cards ID in a serial string, that may without problems be study by way of any microcontroller or PC with an RS-232 interface. The spacing at the pins is two.54 mm, which means the module will without delay suit on a breadboard.

The EM-18 RFID Reader module operating at 125kHz is an inexpensive answer in your RFID based application. The Reader module comes with an on-chip antenna and may be powered up with a 5V strength supply. Power-up the module and join the RS-232 transmit pin of the module to receive a pin of your microcontroller the use of the MAX232 converter. Show your card within the analyzing distance and the card variety is thrown on the output. Optionally the module may be configured for additionally a Weigand output.

Applications:

Security & Surveillance
Smart Home System
Automotive Domain
Industrial Domain


SPECIFICATION
Compatible Card codes  Manchester64-bit,modules64
Current Rating         35mA (Max)
Output                 TTL and UART
OVERVIEW
Compatible Card codes  Manchester64-bit,modules64
Current Rating         35mA (Max)
Output                 TTL and UART

PACKAGE INCLUDES:

1 PCS x Em18 Rfid 125Khz Rs232 Output


SAMPLE CODING

/*

The circuit:

 * RX is digital pin 10 (connect to TX of other device)

 * TX is digital pin 11 (connect to RX of other device)

 */

#include <SoftwareSerial.h>

SoftwareSerial mySerial(10, 11); // RX, TX

void setup() 

{

  // Open serial communications and wait for port to open:

  Serial.begin(9600);

  while (!Serial) {

    ; // wait for serial port to connect. Needed for native USB port only

  }

  Serial.println("Goodnight moon!");

  // set the data rate for the SoftwareSerial port

  mySerial.begin(9600);

  mySerial.println("Hello, world?");

}

void loop()

{ // run over and over

  if (mySerial.available())  // checks whether any data is available in the RFID   RS232.

// Here it refers to the card that is being read by the EM-18 module.

{

    Serial.write(mySerial.read());  // Sends the data to the PC.

// Here it refers to the unique value the card contains.

  }


 }



15 days 

Write a review

Please login or register to review