How To Interface Rfid Module With Arduino || Tomson Electronics

preview_player
Показать описание
Hey Guys In This Video I Will Show You How To Interface RFID Module With Arduino

This Video Is Sponsored By TOMSON ELECTRONICS

Contact :-- H.O TAARA MANSION, 39/4287-A & B,
Manikkiri Cross Road, Pallimukku,
Cochin - 682 016, Kerala, India.

-----------------------------------------------------------------------------

PARTS

USE COUPON CODE :-- ZENOOFF2020 TO GET OFF

-----------------------------------------------------------------------------

This Is A Channel Featuring Arduino Projects & All Arduino Diy Stuff ......

How To Make Gesture Controlled Computer :--

Nodemcu Home Automation :--

Weather Station :--

Led Matrix :--

Bluetooth Car :--

Youtube Subscriber Counter :--

How To Control Led Matrix Using Arduino :--

Arduino Flappy Bird Game :--

Creality Cr 100 3D Printer :--

Pixy 2 Unboxing & Review :--

Arduino Radar :--

Arduino Playing Pickcrafter Game :--

Arduino Stop Watch :--

How To Make A Circuit Using Fritzing :--

Check My Channel For More Stuff Also Do Subscribe :--

--------------------------------------------------------------------------------------------------

--------------------------------------------------------------------------------------------------

Feel Free To Contact

Thank You For Watching My Video Keep Supporting

Music Credits:

Feel Good - MusicbyAden [Vlog No Copyright Music]

InfiNoise - Bring me back to life (Feat. DNAKM) [NCS Release]

Track: InfiNoise - Bring me back to life (Feat. DNAKM)[NCS Release]
Music provided by NoCopyrightSounds.

––––––––––––––––––––––––––––––

#rfidmodule #rfidarduino #rfidprojects
#diyarduinoprojects
Рекомендации по теме
Комментарии
Автор

#include <SPI.h>
#include <Wire.h>
#include <MFRC522.h>
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 16, 2);

#define SS_PIN 10
#define RST_PIN 9
#define LED_G 5
#define LED_R 4
#define RELAY1 6

MFRC522 mfrc522(SS_PIN, RST_PIN);


void setup()

{
lcd.begin();
lcd.backlight();

lcd.print("ZENO MODIFF");
lcd.setCursor(0, 1);
lcd.print("RFID LOCK");
delay(1000);
lcd.clear();

SPI.begin();
mfrc522.PCD_Init();
pinMode(LED_G, OUTPUT);
pinMode(LED_R, OUTPUT);
pinMode(RELAY1, OUTPUT);


}
void loop()
{
lcd.clear();
lcd.print("PLACE YOUR");
lcd.setCursor(0, 1);
lcd.print("RFID TAG");
delay(1000);
lcd.clear();




// Look for new cards
if ( !
{
return;
}
// Select one of the cards
if ( !
{
return;
}
String content= "";
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i++)
{

< 0x10 ? " 0" : " "));
content.concat(String(mfrc522.uid.uidByte[i], HEX));
}
content.toUpperCase();
if (content.substring(1) == "2A 17 6E 3C")
{

lcd.clear();
lcd.print("AUTHORIZED ACCESS");
lcd.setCursor(0, 0);
delay(2000);
lcd.clear();

digitalWrite(RELAY1, HIGH);
digitalWrite(LED_G, HIGH);
delay(6000);
digitalWrite(RELAY1, LOW);
digitalWrite(LED_G, LOW);
delay(1000);
}

else {

lcd.print("UN AUTHORISED");
lcd.setCursor(0, 0);
digitalWrite(LED_R, HIGH);
delay(2000);
digitalWrite(LED_R, LOW);
lcd.clear();
delay(2000);

}
}

ZenoModiff
Автор

Really useful video! Ty bro, you helped with project

annadmitrenko
Автор

How did you light up leds without a resistor wouldnt it burn with arduino?

jason_man
Автор

can you make better building instruction it doesn't work because of "WARNING: Communication failure, is the MFRC522 properly connected?"

janeksnaj
Автор

Any rfid program the connection will be same ah?

raghavan
Автор

where doea the white colour pim get connected in audriuno borad

Hiba-zy
Автор

Easy to understand bro pinsoke begineersn polum follow cheyyam😘

ferbgaming
Автор

I don't see the code in your description. Can you give me a code link? your video is great and detailed.

longdang
Автор

can i use 5v motor gfor output any changes in code

fero___
Автор

LiquidCrystal_I2C.h: No such file or directory
Even after uploading the library which was given in the link, i'm getting an error.
Can you please help me out with this?

tanujkushalappa
Автор

can you give the copy of your code in rfid basic example ?

gianrodjundelarosa
Автор

SIR CODE AND ALL UPLOADED GREEN LIGHT WORKING BUT RED LIGHT IT'S NOT BLINKING CHECK EVERYTHING WIRE, LED, WHAT TO NEXT?? WHAT CAN BE THE PROBLEM

devdev
Автор

Can RFID reader scan a NFC tag ? Please reply 🙏🙏🙏🙏🙏🙏

chiranjeevshubham
Автор

Do not connect to 5v it will burn RFID Module, its supposed to be 3.3

themangosteen
Автор

hi.. I will great-full if u share the code please

ramnaik