Scan Qr code Open the door using Arduino control

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

КОМЕНТАРІ • 96

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

    Awesome work! How long did you make this brother?

  • @tillyaurelle728
    @tillyaurelle728 2 роки тому +1

    hello sir first of all thank you for this video . Please can you do another video where you explain how you do to read informations in you qr code? and show us how you write code and which language you used. Thank you very much

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      Thank you sir for you support to me. I will divide the time to do what you say and will explain the details of coding that can scan the code and the barcode.

  • @jiviteshnagudolla9488
    @jiviteshnagudolla9488 9 місяців тому +1

    Hello Sir ! You have also used a display in the video, can you specify the model of it,,

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

    Awesome project well done!!

  • @indygosoul8200
    @indygosoul8200 Рік тому +1

    so frustrating when people describe their video in English but then the video turns out to be in some foreign language, seriously what's wrong with these people ?

  • @estoymananagot
    @estoymananagot 2 місяці тому +1

    This code have a problem. The relay is open if they scan wrong qr code

  • @ifanloy1873
    @ifanloy1873 Рік тому +1

    Very helpful can I have a picture of the circuit sir .

  • @mjbangis
    @mjbangis 2 роки тому +1

    what scanner did you use?

    • @technologi-electronic
      @technologi-electronic  2 роки тому +1

      MH-ET LIVE Scanner V3

    • @Keanoroa
      @Keanoroa 2 роки тому +1

      Good day, i followed your code and it works but some of the word are wrong when scanned.

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      @@Keanoroa Yes some code is still incomplete

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

    Wow! Good day sir! Can I ask how and where did you connect all the wires needed? Circuit diagram is very much appreciated for our thesis. Thank you so much!

    • @technologi-electronic
      @technologi-electronic  3 роки тому +1

      Yes
      Thank you for your question. It is the best question. I will try to tell you about the wiring or circuit connection in detail.

    • @technologi-electronic
      @technologi-electronic  3 роки тому +1

      For the circuits and devices connected in the project, there are S-RT, S-TX pin scanners connected to Arduino pin 1, 2. LCD displays connect to Arduino A4, A5 pins. Relay to the 3-pin Arduino, then to the Solenoid lock. for this project with all the equipment.
      Then we create a QR code and then put the information in the QR code to save in the project code

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

      @@technologi-electronic thank you ❤️❤️

    • @technologi-electronic
      @technologi-electronic  3 роки тому +1

      @@sittierhehamfarouq9945 This is code www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

  • @monikanowak7194
    @monikanowak7194 2 роки тому +1

    Memerlukan lebih ramai orang jadi sebarkan video ini lebih banyak

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

    Nice job bro can you share the full code please . Thnks

    • @technologi-electronic
      @technologi-electronic  2 роки тому +7

      This is code :
      #include
      SoftwareSerial mySerial(2, 3); // RX, TX
      #include
      #include
      LiquidCrystal_I2C lcd(0x27, 16, 2);
      char i = '0';
      char a[15] = {'0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0'};
      int k = 0;
      int relay_pin = 5;
      void setup()
      {
      lcd.backlight();
      lcd.init();
      pinMode(relay_pin, OUTPUT);
      lcd.clear();
      lcd.setCursor(0,0);
      lcd.print(" The door has a ");
      while (!Serial) ;
      mySerial.begin(9600);

      lcd.clear();
      lcd.setCursor(0,0);
      lcd.print(" The door has a ");
      lcd.setCursor(4,1);
      lcd.print("Password ");
      delay(5000);
      lcd.clear();
      lcd.print("Please Scan Your ");
      lcd.setCursor(0,1);
      lcd.setCursor(6,1);
      lcd.print("Cad ");
      }
      void loop()
      {
      digitalWrite(relay_pin,HIGH);
      if (mySerial.available()) {
      //Serial.write(mySerial.read());
      i = mySerial.read();
      //Serial.println(i);
      a[k] = i;
      k = k + 1;
      // Serial.println(k);
      if (k == 15)
      {
      Serial.print("ID : ");
      Serial.print(a[0]);
      Serial.print(a[1]);
      Serial.print(a[2]);
      Serial.print(a[3]);
      Serial.print(a[4]);
      Serial.print(a[5]);
      Serial.print(a[6]);
      Serial.print(a[7]);
      Serial.println(a[8]);

      if (a[0] == 'E' && a[1] == 'L' && a[2] == '1' && a[3] == '1' && a[4] == '-' && a[5] == '0' && a[6] == '2' && a[7] == '7' && a[8] == 'Q') {
      Serial.print("Name : ");
      Serial.println("Makham XIONG");
      Serial.println();
      lcd.clear();
      lcd.setCursor(1,0);
      lcd.print("Makham XIONG");
      lcd.setCursor(3,1);
      lcd.print("ID: EL11-027Q");
      digitalWrite(relay_pin,HIGH);
      }
      if (a[0] == 'E' && a[1] == 'L' && a[2] == '1' && a[3] == '1' && a[4] == '-' && a[5] == '0' && a[6] == '2' && a[7] == '4' && a[8] == 'Q') {
      Serial.print("Name : ");
      Serial.println("Kantana XAIYASID ");
      Serial.println();
      lcd.clear();
      lcd.setCursor(1,0);
      lcd.print("Kantana XAIYASID");
      lcd.setCursor(3,1);
      lcd.print("ID: EL11-024Q");
      digitalWrite(relay_pin,HIGH);
      }
      if (a[0] == 'E' && a[1] == 'L' && a[2] == '1' && a[3] == '1' && a[4] == '-' && a[5] == '0' && a[6] == '2' && a[7] == '8' && a[8] == 'Q') {
      Serial.print("Name : ");
      Serial.println("Phong XIONG");
      Serial.println();
      lcd.clear();
      lcd.setCursor(1,0);
      lcd.print("Phong XIONG");
      lcd.setCursor(3,1);
      lcd.print("ID: EL11-028Q");
      digitalWrite(relay_pin,HIGH);}
      else{
      digitalWrite(relay_pin, LOW);
      lcd.clear();
      lcd.print("Wrong Your cad");
      lcd.setCursor(0,0);
      lcd.print("To Open");
      lcd.setCursor(0,1);
      lcd.print("change the Cad");
      delay(2000);
      lcd.clear();
      lcd.print("Wrong Try Again");
      lcd.setCursor(0,1);
      delay(500);
      i=0;
      lcd.clear();
      lcd.print("Please Scan Your ");
      lcd.setCursor(0,1);
      lcd.setCursor(6,1);
      lcd.print("Cad ");
      }
      k = 0;
      }
      }
      }

  • @faisalhafizhpurnomo3213
    @faisalhafizhpurnomo3213 Рік тому +1

    Hello sir, can i ask this code?
    I want to make some project like your project sir.

    • @technologi-electronic
      @technologi-electronic  Рік тому +1

      This is the code:
      www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

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

      How Sirrr?

    • @faisalhafizhpurnomo3213
      @faisalhafizhpurnomo3213 Рік тому +1

      Thank You Sir🙏

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

      Please share a library sir🙌🙏

    • @technologi-electronic
      @technologi-electronic  2 місяці тому

      @@faisalhafizhpurnomo3213 www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

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

    How to make the qr code bro?

  • @fawzialessa1339
    @fawzialessa1339 Рік тому +1

    good

  • @okexrmo247
    @okexrmo247 2 роки тому +1

    Is there a way to explain this to me as a beginner. I just want to do this for my project.

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      It is not difficult for this project, it is important to buy all the equipment and then we will continue the cycle and then write the code we need for this project, it will have the code Scanner MG65

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      Here is the description of the code:
      www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

    • @okexrmo247
      @okexrmo247 2 роки тому +1

      @@technologi-electronic Do you have for Us shipping?

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      @@okexrmo247 have not

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      @@okexrmo247 can you Order in Lazada app

  • @estoymananagot
    @estoymananagot 2 місяці тому +1

    Pls give the code and diagram for my project 🙏

    • @technologi-electronic
      @technologi-electronic  2 місяці тому +1

      This is the code and circuit
      www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

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

      Thank you brother

  • @sharmainepadua6202
    @sharmainepadua6202 2 роки тому +1

    Pwede mag ask sa prom ani Sir

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

    Hello brother, hopefully you don't mind to share the code. I have been searching for this kind of simple project for a few months but don't found it. I have been planning to just use esp32 cam but seems like it is so complicated to configure it. So I might just use QR scanner like how you did.

    • @technologi-electronic
      @technologi-electronic  3 роки тому

      Yes thank you for you support to me

    • @technologi-electronic
      @technologi-electronic  3 роки тому

      Yes, at first I used ESP32 camer but it was very complicated I did not pass so I came to use this Scanner

  • @bahhauth6891
    @bahhauth6891 Рік тому +1

    hello sir can u do with esp32 cam?

    • @technologi-electronic
      @technologi-electronic  Рік тому

      ESP 32 cam scan QR code or Scan page

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

      @@technologi-electronic scan qr code

    • @bahhauth6891
      @bahhauth6891 Рік тому +1

      @@technologi-electronic bcs in my project i use esp32 cam to scan the qr code

    • @bahhauth6891
      @bahhauth6891 Рік тому +1

      @@technologi-electronic and if possible can u give the coding for this project so that i can compare mine and yours?

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

      @@technologi-electronic can u give it pls?

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

    Nice job can you share code program from sensor to solenoid

    • @technologi-electronic
      @technologi-electronic  Рік тому +1

      Can do

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

      Please share the code, please... There is an assignment from the campus

    • @technologi-electronic
      @technologi-electronic  Рік тому +2

      @@ifanloy1873 There are many types of sensors

    • @ifanloy1873
      @ifanloy1873 Рік тому +1

      \begingroup @Modern Electronics the sensor that I use is the Gm66 sensor and I tried using the coding that you used on GM65 but it doesn't work please help sir I have a campus assignment 🙏🙏

    • @technologi-electronic
      @technologi-electronic  Рік тому

      @@ifanloy1873 The code error or Gm66 sensor can't scan

  • @shubhamgirme945
    @shubhamgirme945 Рік тому +1

    Nice sir sir please you can help me to make QR code base billing system

  • @ifanloy1873
    @ifanloy1873 Рік тому +1

    Hello sir can you share Qr code use ini program

  • @princejowenbiscocho2826
    @princejowenbiscocho2826 2 роки тому +1

    Where did you create a qr code?

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      I created it in Google Chrome and there are many ways to create it

    • @princejowenbiscocho2826
      @princejowenbiscocho2826 2 роки тому +1

      @@technologi-electronic is this need to be specific serial number of qr codes to so device can function?

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      @@princejowenbiscocho2826
      Yes in the qr code must have the information and then we take the information in the qr code to the code that we write in Arduino when we scan the data of the qr code so it can work.

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

    Can u upload the connection or circuit of it?

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

    I really hope you could share the code.

    • @technologi-electronic
      @technologi-electronic  3 роки тому +1

      Yes I will to share the code for you

    • @technologi-electronic
      @technologi-electronic  3 роки тому +1

      www.myarduino.net/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

    • @technologi-electronic
      @technologi-electronic  3 роки тому

      This is code

  • @invonatormoustaphaalihssai2114
    @invonatormoustaphaalihssai2114 2 роки тому +1

    Code please

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      Yes I will share the code to you

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      this is the code:
      www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod

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

    Please upload this code. I need it necessary

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      yes I will sent code to you

    • @Ahmedzeddan
      @Ahmedzeddan 2 роки тому +1

      @@technologi-electronic yes please i want code for the scanner MG65 to display data on lcd display

    • @technologi-electronic
      @technologi-electronic  2 роки тому +6

      @@Ahmedzeddan This is code :
      #include
      SoftwareSerial mySerial(2, 3); // RX, TX
      #include
      #include
      LiquidCrystal_I2C lcd(0x27, 16, 2);
      char i = '0';
      char a[15] = {'0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0'};
      int k = 0;
      int relay_pin = 5;
      void setup()
      {
      lcd.backlight();
      lcd.init();
      pinMode(relay_pin, OUTPUT);
      lcd.clear();
      lcd.setCursor(0,0);
      lcd.print(" The door has a ");
      while (!Serial) ;
      mySerial.begin(9600);

      lcd.clear();
      lcd.setCursor(0,0);
      lcd.print(" The door has a ");
      lcd.setCursor(4,1);
      lcd.print("Password ");
      delay(5000);
      lcd.clear();
      lcd.print("Please Scan Your ");
      lcd.setCursor(0,1);
      lcd.setCursor(6,1);
      lcd.print("Cad ");
      }
      void loop()
      {
      digitalWrite(relay_pin,HIGH);
      if (mySerial.available()) {
      //Serial.write(mySerial.read());
      i = mySerial.read();
      //Serial.println(i);
      a[k] = i;
      k = k + 1;
      // Serial.println(k);
      if (k == 15)
      {
      Serial.print("ID : ");
      Serial.print(a[0]);
      Serial.print(a[1]);
      Serial.print(a[2]);
      Serial.print(a[3]);
      Serial.print(a[4]);
      Serial.print(a[5]);
      Serial.print(a[6]);
      Serial.print(a[7]);
      Serial.println(a[8]);

      if (a[0] == 'E' && a[1] == 'L' && a[2] == '1' && a[3] == '1' && a[4] == '-' && a[5] == '0' && a[6] == '2' && a[7] == '7' && a[8] == 'Q') {
      Serial.print("Name : ");
      Serial.println("Makham XIONG");
      Serial.println();
      lcd.clear();
      lcd.setCursor(1,0);
      lcd.print("Makham XIONG");
      lcd.setCursor(3,1);
      lcd.print("ID: EL11-027Q");
      digitalWrite(relay_pin,HIGH);
      }
      if (a[0] == 'E' && a[1] == 'L' && a[2] == '1' && a[3] == '1' && a[4] == '-' && a[5] == '0' && a[6] == '2' && a[7] == '4' && a[8] == 'Q') {
      Serial.print("Name : ");
      Serial.println("Kantana XAIYASID ");
      Serial.println();
      lcd.clear();
      lcd.setCursor(1,0);
      lcd.print("Kantana XAIYASID");
      lcd.setCursor(3,1);
      lcd.print("ID: EL11-024Q");
      digitalWrite(relay_pin,HIGH);
      }
      if (a[0] == 'E' && a[1] == 'L' && a[2] == '1' && a[3] == '1' && a[4] == '-' && a[5] == '0' && a[6] == '2' && a[7] == '8' && a[8] == 'Q') {
      Serial.print("Name : ");
      Serial.println("Phong XIONG");
      Serial.println();
      lcd.clear();
      lcd.setCursor(1,0);
      lcd.print("Phong XIONG");
      lcd.setCursor(3,1);
      lcd.print("ID: EL11-028Q");
      digitalWrite(relay_pin,HIGH);}
      else{
      digitalWrite(relay_pin, LOW);
      lcd.clear();
      lcd.print("Wrong Your cad");
      lcd.setCursor(0,0);
      lcd.print("To Open");
      lcd.setCursor(0,1);
      lcd.print("change the Cad");
      delay(2000);
      lcd.clear();
      lcd.print("Wrong Try Again");
      lcd.setCursor(0,1);
      delay(500);
      i=0;
      lcd.clear();
      lcd.print("Please Scan Your ");
      lcd.setCursor(0,1);
      lcd.setCursor(6,1);
      lcd.print("Cad ");
      }
      k = 0;
      }
      }
      }

    • @Ahmedzeddan
      @Ahmedzeddan 2 роки тому +1

      @@technologi-electronic does it reads data on lcd display?

  • @souhailachamroukhi-xy4xl
    @souhailachamroukhi-xy4xl Рік тому

    send me code plz

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

    👍👍👍👏👏👏👏

  • @rabebbouaziz2562
    @rabebbouaziz2562 2 роки тому +1

    hi , i realy hope you can share the full code because i'm working on my project if you can help me thats will be creat , pls send me on my email , thanks

    • @technologi-electronic
      @technologi-electronic  2 роки тому

      Yes I will share the code to you

    • @technologi-electronic
      @technologi-electronic  2 роки тому +1

      This is code :
      www.cybertice.com/product/3825/%E0%B9%82%E0%B8%A1%E0%B8%94%E0%B8%B9%E0%B8%A5%E0%B8%AD%E0%B9%88%E0%B8%B2%E0%B8%99-%E0%B8%9A%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94-%E0%B8%84%E0%B8%B4%E0%B8%A7%E0%B8%AD%E0%B8%B2%E0%B8%A3%E0%B9%8C%E0%B9%82%E0%B8%84%E0%B9%89%E0%B8%94mh-et-live-scanner-v3-barcode-reading-board-qr-code-scanner-reader-mod