The EM-18 RFID Reader Module by Innovations is a compact radio frequency identification (RFID) reader that is capable of reading 125 kHz RFID tags and cards. It is widely used for identification and access control in various applications such as attendance systems, security systems, and personal identification.
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (4.5V to 5.5V) |
2 | GND | Ground |
3 | TX | Serial TTL data output |
4 | /SEL | Enable pin (active low) |
5 | NC | Not connected |
#include <SoftwareSerial.h>
SoftwareSerial RFID(10, 11); // RX and TX
void setup() {
RFID.begin(9600); // Start serial to RFID reader
Serial.begin(9600); // Start serial to PC
}
void loop() {
if (RFID.available() > 0) {
// Read data from the RFID reader
String code = RFID.readStringUntil('\n');
// Print the RFID code to the Serial Monitor
Serial.println(code);
}
}
Q: Can the EM-18 module write to RFID tags?
Q: What is the maximum read range of the EM-18 module?
Q: How do I connect multiple EM-18 modules to a single microcontroller?
Remember to always refer to the manufacturer's datasheet for the most accurate and detailed information about the EM-18 RFID Reader Module.