Em18 Rfid 125Khz Ttl Output With Module
Rs. 218.00 Rs. 245.00
- Product Code: RFID
- SKU -
- Availability: 2-3 Days
- Price in reward points: 4
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
Working Frequency | 125Khz |
Baud Rate | 9600 |
Interface | TTL or Wiegand26 |
Working Voltage | DC 5V |
Working Current | 19mA - 25mA |
Reading Distance | Max.35mm |
Working Temperature | -10℃ to +70℃ |
Storage Temperature | -20℃ to +80℃ |
Humidity | 0% - 95% |
Serial and TTL output. | |
Excellent read performance without an external circuit. | |
Compact size and cost-effective. |
OVERVIEW | |
Working Frequency | 125Khz |
Baud Rate | 9600 |
Interface | TTL or Wiegand26 |
Working Voltage | DC 5V |
Working Current | 19mA - 25mA |
Reading Distance | Max.35mm |
Working Temperature | -10℃ to +70℃ |
Storage Temperature | -20℃ to +80℃ |
Humidity | 0% - 95% |
Serial and TTL output. | |
Excellent read performance without an external circuit. | |
Compact size and cost-effective. |
PACKAGE INCLUDES:
1 PCS x Em18 Rfid 125Khz Ttl Output With Module
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 RFID TTL.
// Here it refers to the card that is being read by the EM-18 module
{
Serial.write(mySerial.read()); // sends data to the PC
//Here it refers to the unique value that the card contains
}}
15 days