RFID Door Lock Project Kit - Arduino Project
This Product is available in Ahmedabad - India Warehouse .
Approx Delivery Time is 2-5 Days.
- Stock: In Stock
- Brand: Import Dukan
- SKU: IDC-01-492
₹754
5 or more ₹705
15 or more ₹677
(Excluding 18% GST)
The RFID Door Lock is a lock that is simple to install and allows the user to easily lock and unlock doors.
This combo contains Arduino Uno with cable, RC522 RFID Reader Writer Module, Tower pro servo motor, Male to Male Jumper cable, Male to Female Jumper Cable, 9v battery, barrel jack connector.
RC522 - RFID Reader /Writer with Cards Kit includes a 13.56MHz RF reader and writer module that uses an RC522 IC and two S50 RFID cards tag. The MF RC522 is an integrated transmission module for contactless communication at 13.56 MHz. RC522 supports ISO 14443A/MIFARE mode. RC522 - RFID Reader features an outstanding modulation and demodulation algorithm to serve effortless RF communication at 13.56 MHz. The S50 RFID Cards will ease up the process helping you to learn and add the 13.56 MHz RF transition to your project.
Arduino Uno R3 Compatible Board is a microcontroller board that is based on the ATmega328. Arduino Uno has 14 digital input or output pins(where 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button. It has everything needed to support the microcontroller, you need to simply connect it to a computer with a USB cable or power it with an AC-to-DC adapter or battery to get started.
Micro Servo 9G is lightweight, high-quality, and lightning-fast. The servo is designed to work with almost all radio control systems. It is with excellent performance that brings you to another horizon of flight
Package Includes:
1 x RC522 RFID 13.56MHZ Reader Writer Module
1 x Arduino Uno R3 Compatible board+ Cable for Arduino Uno
1 x TOWER PRO 9G MICRO SERVO MOTOR
1 xHigh Quality NIPPO 9V Battery
1 x Battery 9V Snap Connector To DC Barrel Jack Adapter
1 x 20cm Male To Male Jumper Cable Wire
1 x 20cm Male To Female Jumper Cable Wire
Arduino Code:
Note: You required servo and MFRC522 library.
#include#include #include #define SS_PIN 10 #define RST_PIN 9 #define SERVO_PIN 3 Servo myservo; #define ACCESS_DELAY 2000 #define DENIED_DELAY 1000 MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance. void setup() { Serial.begin(9600); // Initiate a serial communication SPI.begin(); // Initiate SPI bus mfrc522.PCD_Init(); // Initiate MFRC522 myservo.attach(SERVO_PIN); myservo.write( 70 ); delay(7500); myservo.write( 0 ); Serial.println("Put your card to the reader..."); Serial.println(); } void loop() { // Look for new cards if ( ! mfrc522.PICC_IsNewCardPresent()) { return; } // Select one of the cards if ( ! mfrc522.PICC_ReadCardSerial()) { return; } //Show UID on serial monitor Serial.print("UID tag :"); String content= ""; byte letter; for (byte i = 0; i < mfrc522.uid.size; i++) { Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "); Serial.print(mfrc522.uid.uidByte[i], HEX); content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ")); content.concat(String(mfrc522.uid.uidByte[i], HEX)); } Serial.println(); Serial.print("Message : "); content.toUpperCase(); if (content.substring(1) == "69 C8 E2 2A") //change here the UID of the card { Serial.println("Authorized access"); Serial.println(); myservo.write( 70 ); delay(7500); myservo.write( 0 ); } else { Serial.println(" Access denied"); delay(DENIED_DELAY); } }