How to use RFID with Arduino | How to use the RC522 RFID module with an Arduino - Tutorial

Поділитися
Вставка
  • Опубліковано 14 гру 2024

КОМЕНТАРІ • 76

  • @evoiboi69
    @evoiboi69 Рік тому +4

    this did work, my rfid reader did read a card
    but how did you put led's without showing them
    i dont want to stare at a serial monitor all day just to see if my card declined

  • @jeffbowyer4576
    @jeffbowyer4576 3 роки тому +13

    Concise and informative. Exactly how I like tutorial videos.

  • @User-hg9re
    @User-hg9re 14 днів тому

    It disnt work. I connect rfid reader directly to arduino and it doesnt work. Should I use resistor or something and where should I use it? I saw something on forums but its not shown in your diagram

  • @noureenashameer6826
    @noureenashameer6826 8 місяців тому +1

    I am buying Arduino RFID reader kit this weekend 🎉

  • @SartajSaif
    @SartajSaif 3 роки тому +5

    My error please reply me,
    01:47:20.586 -> Firmware Version: 0x0 = (unknown)
    01:47:20.586 -> WARNING: Communication failure, is the MFRC522 properly connected?
    01:47:20.623 -> Scan PICC to see UID, SAK, type, and data blocks...

  • @officialbalaji3890
    @officialbalaji3890 2 місяці тому

    bro resistor value amatha bro

  • @AbdulMoizAdeel-www
    @AbdulMoizAdeel-www 2 місяці тому

    so you should connect directly to arduino instead of motherboard and make sure connections are not loose if your rfid module is not working

  • @ravibharti3433
    @ravibharti3433 5 років тому +1

    Sir I bought rfid card from Delhi but cards not working. We not found UID I'd.

    • @ravibharti3433
      @ravibharti3433 5 років тому

      @@electronicGURU rfid card cannot be scanned.

    • @ravibharti3433
      @ravibharti3433 5 років тому

      show approximate your card to the reader on the serial monitor

  • @RandomEditsCo
    @RandomEditsCo 3 роки тому +4

    How far can the sensor get the key

  • @iswaryakuchimanchi9176
    @iswaryakuchimanchi9176 2 роки тому +2

    Hello. My module is not reading the cards. And it says that firmware is unknown.please help me resolve this problem for our project.please

  • @diviyaaapmuniandy9503
    @diviyaaapmuniandy9503 11 місяців тому

    how to use RFID with stc 8081 ?

  • @kingcreatez4827
    @kingcreatez4827 3 роки тому +2

    hi can i have a schematic for the connections from rfid module to arduino pls

    • @electronicGURU
      @electronicGURU  3 роки тому

      i already mentioned it in video ? right? what needs to be connected where?

    • @kingcreatez4827
      @kingcreatez4827 3 роки тому +1

      @@electronicGURU yeh you did thanks, but can you send a png file of it pls?

    • @electronicGURU
      @electronicGURU  3 роки тому

      sorry i Don't have it now , i usually delete it all after video publishing. please take a screenshot from video.

  • @Gumballation
    @Gumballation 11 місяців тому

    Hi sir! Your video is very informative! so is it possible to do this with TCP/IP?

  • @kociarz100
    @kociarz100 Рік тому

    Maby how to buid it?

  • @avanin_aval
    @avanin_aval Рік тому

    Sir I have a doubt ,,How we add the information in RFID tag

  • @Etrugulosmaneditz548
    @Etrugulosmaneditz548 4 роки тому

    Can you help me it says firmware version unknown and its says warning communication failure on Comm 5

    • @iswaryakuchimanchi9176
      @iswaryakuchimanchi9176 2 роки тому

      Did your problem resolve? If so can you help me? It's the same problem for me. Please help us

    • @Etrugulosmaneditz548
      @Etrugulosmaneditz548 2 роки тому

      @@iswaryakuchimanchi9176 no I just realized you cannot solve this problem you have to buy a new reader

  • @vedantugale2646
    @vedantugale2646 2 роки тому

    Bhai maine sub kuch kia bar bar connection ki par wo card ka uid hiii nahi de raha hai

  • @Pragadeeshwaran.S
    @Pragadeeshwaran.S 8 місяців тому +1

    Thank you so much

  • @PradeepKumar-zb1dh
    @PradeepKumar-zb1dh 5 років тому

    Great video once again 😃

  • @talhaislam4848
    @talhaislam4848 3 роки тому

    Please share the code with more than 1 RFid access. or share link if there is any video thank.

    • @michalvydareny5284
      @michalvydareny5284 Рік тому

      here you go pal:
      just change if condition with authorized access
      if (content.substring(1) == "(1st rfid tag)" || content.substring(1) == "(2nd rfid tag)"

  • @girishpanchal9072
    @girishpanchal9072 2 роки тому

    Hi
    Can I increase the range of this module upto 1meter?

  • @carsking6732
    @carsking6732 2 роки тому

    mu one is not reading cards

  • @kaushikbhat74
    @kaushikbhat74 5 місяців тому

    where are the connections susm

  • @harryskay617
    @harryskay617 Рік тому

    I did not see the link to your code

    • @Ollysproductionslol
      @Ollysproductionslol 8 місяців тому

      #include
      #include
      #define SS_PIN 10
      #define RST_PIN 9
      MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance.
      void setup()
      {
      pinMode(7,1);
      pinMode(6,1);
      Serial.begin(9600); // Initiate a serial communication
      SPI.begin(); // Initiate SPI bus
      mfrc522.PCD_Init(); // Initiate MFRC522
      Serial.println("Approximate 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) == "F9 D1 F3 6E") //change here the UID of the card/cards that you want to give access
      {
      Serial.println("Authorized access");
      Serial.println();
      //delay(3000);
      digitalWrite(6,1);
      delay(200);
      digitalWrite(6,0);
      delay(200);
      digitalWrite(6,1);
      delay(200);
      digitalWrite(6,0);
      delay(200);
      digitalWrite(6,1);
      delay(200);
      digitalWrite(6,0);
      delay(1000);
      }
      else
      {
      Serial.println(" Access denied");
      Serial.println();
      //delay(3000);
      digitalWrite(7,1);
      delay(200);
      digitalWrite(7,0);
      delay(200);
      digitalWrite(7,1);
      delay(200);
      digitalWrite(7,0);
      delay(200);
      digitalWrite(7,1);
      delay(200);
      digitalWrite(7,0);
      delay(1000);
      }

      }

  • @JessicaBasnight-b7u
    @JessicaBasnight-b7u 3 місяці тому

    Sister Radial

  • @kevilysoled5302
    @kevilysoled5302 6 місяців тому

    thankyou very much buddy!

  • @hemalbhatt7221
    @hemalbhatt7221 2 місяці тому

    Thank you Dear

  • @KhaledAhmed-fs2ns
    @KhaledAhmed-fs2ns 3 роки тому +2

    Hi
    I would like to contact you
    I have a job for you

    • @electronicGURU
      @electronicGURU  3 роки тому +1

      Well ping me on instagram.

    • @KhaledAhmed-fs2ns
      @KhaledAhmed-fs2ns 3 роки тому +1

      @@electronicGURU
      Can you contact me on
      Khaledhashad@hotmail.com
      Thanks

    • @electronicGURU
      @electronicGURU  3 роки тому

      Hi Khaled please mail to me. My mail id is in channel description.

    • @harryskay617
      @harryskay617 Рік тому

      @@electronicGURU hi sir pls I have watch your rfid circuit but I don't see the link to that code please help me to send the link sir

  • @Hnzm21
    @Hnzm21 Рік тому +11

    he is not reading my card

    • @incognitowriter2240
      @incognitowriter2240 8 місяців тому +1

      Any solution?

    • @mreazen609
      @mreazen609 8 місяців тому +1

      Most probably it is a connection error try pressing it with your finger or push it a little to the front or back while trying to scan

  • @駿勝洪
    @駿勝洪 Рік тому +3

    Firmware Version : 0×0 = (unknown)
    Is this mean my RFID broken?

  • @hemangpatel6248
    @hemangpatel6248 6 місяців тому

    wrong info shown in video you code doesn't show sector data

  • @LeveluplegendXLLAlt
    @LeveluplegendXLLAlt 6 місяців тому

    best rfid video

  • @electronic7979
    @electronic7979 5 років тому +1

    Very good

  • @badrulhisyamabdullah614
    @badrulhisyamabdullah614 3 роки тому +1

    Thanks

  • @PhamViPhuThienB
    @PhamViPhuThienB 2 місяці тому

    excellente

  • @tomikplayer6719
    @tomikplayer6719 2 роки тому

    THIS IS NOT WORKING I DO IT 545752415456415415 TIMES AND IT DONT WANT TO WORK!?!?!?!?!?!?!?!

  • @Yume-x9v
    @Yume-x9v 9 днів тому

    Track 2 ooo

  • @technolabcreation
    @technolabcreation 5 років тому +1

    🤩😎🕺🎤🎼🏆🏅🥇❤❤❤❤❤

  • @sumitabiswas5099
    @sumitabiswas5099 5 років тому

    Nice......

  • @vinhquang2886
    @vinhquang2886 2 місяці тому

    L tutorial