Help for Rfid + keypad lock

hello guys im studying at electric department. i need help for my project.
ım using arduino ,selenoid lock ,relay, 3x4 keypad, rfid reader, lcd display with ıc2 and some leds, buzzers

ı dont know how to do rfid match and password together, i only learned my rfid cards id in 2 weaks im new to coding. my card id is : 243 , 191 , 214 , 149 , 15
can someone help for code

try searching the web for relavent topics, e.g. arduino rfid will give you plenty of links
test each device RFID reader, LCD, lock control, etc then when you know they all work starting putting the project together
what microcontroller module are you planning to use?

Welcome to the forum

When you read the card how are you storing the code that you read ?

#include <SPI.h>
#include <RFID.h>

RFID lrt720(10, 9);

void setup()
{
Serial.begin(9600);
SPI.begin();
lrt720.init();

}

void loop()
{
if (lrt720.isCard()) {

if (lrt720.readCardSerial()) {

  Serial.println("Kart Bulundu ID : ");
  Serial.print(lrt720.serNum[0]);
  Serial.print(" , ");
  Serial.print(lrt720.serNum[1]);
  Serial.print(" , ");
  Serial.print(lrt720.serNum[2]);
  Serial.print(" , ");
  Serial.print(lrt720.serNum[3]);
  Serial.print(" , ");
  Serial.print(lrt720.serNum[4]);
  Serial.println(" ");
}

}
lrt720.halt();
}

Thank you for posting your code but please follow the advice given in the link below when posting code, in particular the section entitled 'Posting code and common code problems'

Use code tags (the < CODE/ > icon above the compose window) to make it easier to read and copy for examination

https://forum.arduino.cc/t/how-to-get-the-best-out-of-this-forum

Hi!

Play a little bit with this examples then join the codes to do what do you want.

Best regards.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.