Arduino Project : How to build ON/OFF switch by using RFID READER?

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 เม.ย. 2020
  • How to build RFID READER with an Arduino?
    You can download project materials here: bit.ly/3aQnIb3
    1. Arduino source code
    2. Circuit diagram
    3. RFID RC522 Module pinout
    4. JQC- 3FF-S-Z 5V DC Relay pinout
    5. Arduino board and RFID Module pin connection table
    Component list for circuit:
    #. Arduino Uno board
    #. RFID RC522 Module
    #. JQC- 3FF-S-Z 5V DC Relay
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 46

  • @Sanjayadon
    @Sanjayadon 4 ปีที่แล้ว +1

    Wow, nice work 🔥🔥🔥

  • @sachithliyanage2567
    @sachithliyanage2567 ปีที่แล้ว +1

    Thanks a lot. Very clear and helpful instructions ❤️

  • @vikramjeetpaul
    @vikramjeetpaul 4 ปีที่แล้ว +2

    WOW..THNX FOR THE CODE...I MADE IT SUCCESSFULLY!

  • @gayathri317
    @gayathri317 4 ปีที่แล้ว +1

    Excellent job !

  • @scientistBENIELSLAB
    @scientistBENIELSLAB 3 ปีที่แล้ว +1

    Very use full thank you..........nice video

  • @HarishProjects
    @HarishProjects 2 ปีที่แล้ว +1

    Thank you Brother 🔥🔥🔥👍💯

  • @fusionmr
    @fusionmr 8 หลายเดือนก่อน

    Hi,
    you use a single relay at a time , can we use 2 relays at a time?
    And control both with one tag?

  • @jeminisanthushta3158
    @jeminisanthushta3158 4 ปีที่แล้ว +1

    Great initiative ayya!

  • @evservice369
    @evservice369 2 ปีที่แล้ว

    nice brother
    am also trying ,its working good
    thank u

  • @m.amadhushanka7462
    @m.amadhushanka7462 2 ปีที่แล้ว +1

    great. thanks

  • @callsigntracer7537
    @callsigntracer7537 2 ปีที่แล้ว +1

    How would i have multiple different RFID readers to one chip(so different readers would trigger different things with one chip?) Or something like that- I don't want to use multiple arduino UNOs in one project

  • @NANOTVLOGSjmf
    @NANOTVLOGSjmf 2 ปีที่แล้ว +1

    how to add rfid without reprogramming

  • @Fresh_Career_Compass
    @Fresh_Career_Compass 7 หลายเดือนก่อน

    Bro can i add a water pump in this circuit

  • @pavankumar-kc6dv
    @pavankumar-kc6dv ปีที่แล้ว

    Without bulb relay operates good when i connected load relay on but never goes off. Pls suggest me what should I do to solve the issue

    • @sangeethprasanga
      @sangeethprasanga  ปีที่แล้ว

      Please double check the relay configuration, if you are not configured the pins properly that can happen.

  • @parthsonagara7761
    @parthsonagara7761 2 ปีที่แล้ว

    Can I use this code in Node MCU?

    • @sangeethprasanga
      @sangeethprasanga  ปีที่แล้ว

      You cannot use this exact code, because I have specifically written this code for Arduino Uno board.

  • @anatolxxx
    @anatolxxx 2 ปีที่แล้ว +1

    Hello,
    congratulations on the project, it works perfectly; how can i add more tags? What should I change / add in the arduino code

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      Wow..Good job. Follow the below instruction to add more tags.
      First, read the RFID key IDs as I said in my video. And then add more new variables as below with those keys. You can add more keys as you need.
      String RFIDKey1 = "YourRFIDKey1";
      String RFIDKey2 = "YourRFIDKey2";
      String RFIDKey3 = "YourRFIDKey3";
      String RFIDKey4 = "YourRFIDKey4";
      String RFIDKey5 = "YourRFIDKey5";
      Then in the bellow line add more if conditions as below;
      #Current version;
      if(strID.indexOf(RFIDKey1)>=0 or strID.indexOf(RFIDKey2)>=0){
      #New version;
      if(strID.indexOf(RFIDKey1)>=0 or strID.indexOf(RFIDKey2)>=0 or strID.indexOf(RFIDKey3)>=0 or strID.indexOf(RFIDKey4)>=0 or strID.indexOf(RFIDKey5)>=0){
      If you have any questions please contact me, I will write the code & send it as you need.

    • @pavankumar-kc6dv
      @pavankumar-kc6dv ปีที่แล้ว

      Without bulb relay operates good when i connected load relay on but never goes off. Pls suggest me what should I do to solve the issue

    • @pavankumar-kc6dv
      @pavankumar-kc6dv ปีที่แล้ว

      Pls give any suggestions to solve this issue

  • @narithchan3980
    @narithchan3980 10 หลายเดือนก่อน

    Bro I can't access to the code😢

  • @caronhezekiah6434
    @caronhezekiah6434 2 ปีที่แล้ว +1

    can I have an access to code

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      You can download the project materials with all codes by using this link: bit.ly/3aQnIb3

  • @indrajatiantonio4465
    @indrajatiantonio4465 2 ปีที่แล้ว

    Here, the relay never goes Off. What could it be i mistaken something

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      Double check the input pin connects on relay. If LEDs working fine code & circuit is correct, if not you have to check the circuit.

    • @indrajatiantonio4465
      @indrajatiantonio4465 2 ปีที่แล้ว

      Thank for your reply. Once more, what is the purpose for #define SP_PIN 8 ?

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      @@indrajatiantonio4465 Sorry, it's not using in this published project, but not effect to the final build.
      What happened to your build, is it working now?

    • @indrajatiantonio4465
      @indrajatiantonio4465 2 ปีที่แล้ว

      Kudos to you. All my confusion has lifted.

  • @zrgzefq1526
    @zrgzefq1526 3 ปีที่แล้ว +1

    not working bro :(

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      Please send me your setup and code, I will help you.

  • @mist1600
    @mist1600 3 ปีที่แล้ว +1

    bro plz helpme

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      Please send me your setup and code, I will help you.

  • @protechnology550
    @protechnology550 2 ปีที่แล้ว +1

    Where is code?

    • @sangeethprasanga
      @sangeethprasanga  2 ปีที่แล้ว

      bit.ly/3aQnIb3
      You can download Arduino code (RFID-Reader-ON-OFF-Switch.ino) and other documentations from a given URL via Google drive.

  • @MultiGamingOfficial
    @MultiGamingOfficial 3 ปีที่แล้ว +2

    title in english
    video in fucking hindi 😂

  • @vfosterm
    @vfosterm ปีที่แล้ว

    confusing to have title in english, description in english, comments in english. Video in...