RFID based Door lock system using Raspberry Pi

Call for Price

RFID based Door lock system using Raspberry Pi

SKU: RFID based Door lock system using Raspberry Pi Category:

Description

ABSTRACT

RFID means Radio Frequency Identification, which the technology used for security purpose. Which the RF card is encoded by the Digital information, whenever you place the RF Cards in the RF Reader, the data read by the reader results that Digital Information, so each card contains different identification digital information, so Authentication is referred by configuring with digital information. This Raspberry Pi system teaches you to interface the RFID with the Raspberry Pi by decoding the Reading Digital data, to check for authentication. If digital data of certain card matches with the Data configured in the program, it shows as authenticated, then opens the door. If Card data are not authenticated, it doesn’t open the door until user placing the suitable RF cards which having digital data configured in the system.

HARDWARE REQUIRED

  • Raspberry Pi
  • SD card
  • Power supply
  • VGA to HDMI converter (Optional)
  • RF Reader
  • RF cards

SOFTWARE REQUIRED

  • Raspbian Stretch OS      
  • SD card Formatter
  • Win32DiskImager (or) Etcher

PYTHON LIBRARIES USED

  • Time library (For Time delay)
  • Serial Library

CODE

import serial

port = serial.Serial("/dev/serial0", baudrate=9600, timeout=0.5)
people = {"00009FB68CA5": "Rahul", "123456789": "Champ"}
while True:
    rcv = port.readline()
    if (rcv is not ''):
        print
        people[rcv]

Additional information

Weight 0.000000 kg

Reviews

There are no reviews yet.

Be the first to review “RFID based Door lock system using Raspberry Pi”

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.