125Khz RFID Reader Module RDM6300 UART Output Access Control System for arduino DIY KIT



Item Description:


100% Brand New and High Quality


The dedicated module RDM630 series of non-contact RF ID card, preclude the use of advanced RF receiver circuits and embedded microcontroller design


Combined with efficient decoding algorithms, to complete the EM4100 compatible ID card data reception


This module is convenient to use, the power supply serial connection after for motherboard, when RFID card to enter the card read range, module will be through the UART the card number directly send for


Receiver sensitivity, high operating current, high stability


Suitable for access control, time and attendance, charges, anti-theft, Patrol and other radio frequency identification applications


Frequency: 125KHz


Interface: TTL RS232


Voltage:for DC 5V(±5%)


Current:


ple code:


String comdata = "";


void setup()


{


pinMode(2,OUTPUT);


pinMode(3,OUTPUT);


digitalWrite(2,HIGH);


digitalWrite(3,HIGH);


Serial.begin(9600);


}




void loop()


{




digitalWrite(2,HIGH);


digitalWrite(3,HIGH);


while (Serial.available() > 0)


{


comdata += char(Serial.read());


delay(2);


}


if(comdata.length() > 0&&comdata=="0500ADDF1443")


{


while( comdata.length() > 0 )


{


digitalWrite(3,LOW);


delay(100);


while (Serial.available() > 0)


{


comdata += char(Serial.read());


delay(2);


}


comdata = "";


}


}


else if (comdata.length() > 0)


{


while(comdata.length() > 0)


{


digitalWrite(2,LOW);


delay(100);


while (Serial.available() > 0)


{


comdata += char(Serial.read());


delay(2);


}




comdata = "";


}


}


}