Bidirectional Visitor counter using Arduino Project Part 1 (Arduino Series - Part 08) | हिंदी में

Поділитися
Вставка
  • Опубліковано 8 вер 2024
  • Welcome to Arduino Series, in this series we are going to teach you every basic things about Arduino, its programming, interfacing Arduino with different type of sensors and all other stuffs and that too in Hindi.
    In this video we are going to see everything about IR Sensors, How to interface IR Sensor with Arduino? How IR Sensor works? How to write code for IR Sensor in Arduino? and In the final steps we are going to develop a Project which will be Bidirectional Visitor counter using these IR Sensors. This Video is the Part 1 of the project in Part 2 we will develop the full Project.
    इस वीडियो में हम IR Sensor के बारे में सब कुछ देखने जा रहे हैं, IR Sensor को Arduino के साथ कैसे इंटरफ़ेस करें? IR Sensor कैसे काम करता है? Arduino में IR Sensor के लिए कोड कैसे लिखें? और अंतिम चरणों में हम एक प्रोजेक्ट विकसित करने जा रहे हैं जो इन IR Sensor का उपयोग करके Bidirectional Visitor counter होगा। यह वीडियो प्रोजेक्ट का Part 1 है Part 2 में हम पूर्ण प्रोजेक्ट का विकास करेंगे।
    Arduino Series:
    ▶ Previous Video: • Bluetooth Module HC-05...
    ▶ Next Video: • Bidirectional Visitor ...
    Video contents:
    1. Components required: 01:22
    2. IR Sensor explanation: 02:27
    3. Program for IR Sensor: 09:00
    🛒 Buy Arduino UNO: amzn.to/2Xcl4XI
    🛒 Buy IR Sensors: amzn.to/2Am4IBc
    🛒 Buy 16x2 LCD Module: amzn.to/2xQQSno
    🛒 Buy 5V Fan: amzn.to/2TpCJu0
    🛒 Buy Resistor Kit: amzn.to/2AOT9FP
    🛒 Buy Half Breadboard: amzn.to/2Xe5v1S
    🛒 Buy Jumper Wires: amzn.to/2To2P0i
    Links to Buy Arduino Beginner's Guide:
    🛒 Arduino Beginner's Project Kit:
    amzn.to/3bMBCeh
    🛒 Arduino Sensors Kit:
    amzn.to/3e6hm8R
    🛒 Arduino Robot Kit:
    amzn.to/3e6J6dG
    🛒 Arduino Programming Book:
    amzn.to/2WQq3hM
    Links of all Previous videos of Arduino Series:
    ▶ Watch Part 01 (Basic things about Arduino):
    • Basic things about Ard...
    ▶ Watch Part 02 (Programming of Arduino):
    • Programming of Arduino...
    ▶ Watch Part 03 (Push button and LED):
    • Digital Input & Output...
    ▶ Watch Part 04 (Interfacing 16x2 LCD):
    • Interfacing 16x2 LCD w...
    ▶ Watch Part 05 (Interfacing Ultrasonic sensor):
    • Interfacing Ultrasonic...
    ▶ Watch Part 06 (Interfacing DHT11 sensor):
    • Temperature Sensor DHT...
    ▶ Watch Part 07 (Interfacing Bluetooth Module):
    • Bluetooth Module HC-05...
    ✔ Subscribe E&E: bit.ly/2Xn1Ss2
    Links for Playlist:
    ▶ Arduino Series (हिंदी में):
    • Arduino Series (हिंदी ...
    ▶ NodeMCU IoT Series (हिंदी में):
    • NodeMCU IoT Series (हि...
    ----------------------------------------------------------------------------------
    For more info about us visit:
    (हमारे बारे में अधिक जानकारी के लिए):
    Email Id: 2idiotsofengineering@gmail.com
    Facebook: enginee...
    Instagram: / engineerselectronics
    Twitter: / engnelectronics
    Blog: engineersnelect...
    GitHub: github.com/him...
    Channel: / engineerselectronics
    ----------------------------------------------------------------------------------
    Thank You!
    Engineers & Electronics
    #Arduino #ArduinoTutorials #ArduinoSeries

КОМЕНТАРІ • 87

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

    Best knowledgeable video with easy way..... Thanks bro

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

    Thank you sir
    -Student from Philippines

  • @hariharanm2906
    @hariharanm2906 5 років тому +4

    bro your way of teaching is very nice but i don't know hindi so it is my request to add english subtitles please

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

    Hii i need a help
    I am making bidirectional visitor counter using arduino uno With automatic room light controller
    I am getting error like
    When there is no visitor my led was glowing instead of turn on led i need to turn off when there is no visitor and when there is any visitor my led wants to glow
    Plzz help me
    This is my code:
    #include
    LiquidCrystal lcd(2,3,7,6,5,4);
    #define in 8
    #define out 9
    #define led 10
    int count=0;
    void setup()
    {
    lcd.begin(16,2);
    lcd.print("Visitor Counter");
    delay(2000);
    pinMode(in, INPUT);
    pinMode(out, INPUT);
    pinMode(led, OUTPUT);
    lcd.clear();
    lcd.print("Person In Room:");
    lcd.setCursor(0,1);
    lcd.print(count);
    }
    void loop()
    {
    int in_value = digitalRead(in);
    int out_value = digitalRead(out);
    if(in_value == LOW)
    {
    count++;
    lcd.clear();
    lcd.print("Person In Room:");
    lcd.setCursor(0,1);
    lcd.print(count);
    delay(1000);
    }
    if(out_value == LOW)
    {
    count--;
    lcd.clear();
    lcd.print("Person In Room:");
    lcd.setCursor(0,1);
    lcd.print(count);
    delay(1000);
    }

    if(count==0)
    {
    lcd.clear();
    digitalWrite(led, LOW);
    lcd.clear();
    lcd.print("Nobody In Room");
    lcd.setCursor(0,1);
    lcd.print("Light is Off");
    delay(200);
    }
    else
    {
    digitalWrite(led, HIGH);

    }
    }

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

    Great 👍, god bless you sir,

  • @adrirajsaha3730
    @adrirajsaha3730 4 роки тому +2

    Pls make a video on how to decode codes from a remote using IR receiver and sending codes to TV from IR transmitter

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

    You are great sir please make your next video 👍

  • @Vishal-J97
    @Vishal-J97 5 років тому +1

    Bhaiya... 😊 nice And pretty Descent Project..!! Mai bhi 3rd year ka Banda hu par... Mai Practical Knowledge ke liye Taras rha hu. Aap Kuch help ya Website ya UA-cam Channel bataa sako jo basic Components ke baare aur projects ko bataata hai... To it ll be very Helpful.

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

      I prefer you to visit www.circuitdigest.com this is the best technical website from where I have learnt alot of things

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

    Very nice idea❤❤

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

    Best explanation .. Tysm

  • @Vishal-J97
    @Vishal-J97 5 років тому +3

    But.. Truly ... Aapki Explanation Kisi Gadhe ko bhi smjh aa jaaygi.!!! 😀
    Thnx... For ur Brilliant Explanation.!!

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

    Please explain about the gyroscope sensor how to interface with Arduino
    Tinkercad in Arduino with led brightness control as soon as possible

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

    Sauper videos

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

    Brother kya Arduino ki jagah atmega328p ic se ye project kaise banaye?

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

    Sir please servo motor ke saath arduino interfacing ka video banaiye

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

    Pls send part 2

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

    thanks man

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

    Big bro ye single seven segment display par possible hai kya ?????relpy please🙏🏼🙏🏼🙏🏼

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

    Bro the output of the counter is fluctuating from 0 and 1 how to make that stable? And make it count properly?...

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

    Can u provide a hex file of IR sensor ...
    According to this project

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

    GSM water pump on off keliye problem batayye

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

    Pls tell me from where did u get all the components and how much did it cost? because I want to make

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

    Pls make video on helicopter transmitter and receiver with the help of arduino

  • @poohjaish9466
    @poohjaish9466 5 років тому +2

    Amazing 😍😍😍😍

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

    Himansu bhai mpu 6050 accelerometer bare me batao please mujhe ek balancing robot project bana hai

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

    can we change led display with MAX7219 for better display ?

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

    Hello,
    I have a task to do and I am new to Arduino. The task is to create a project in Arduino IDE, using the FreeRtos library. Then I have to find all the library files that are included (that belong to RTOS) and combine those parts that are needed into a single file together with the code. How can I do it, any help would be really greatful. Thanks

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

    Sir what can we do for manipulating multiple lights and fans at a time

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

    Hai sir
    could you please made a code ?
    I have active low 1 nos ir sensor and 2 nos 5 v dc motor with arduino uno
    I want to work
    1.If sensor is active Frist time - motor 1 work 3 second
    2. .If sensor is active Second time - motor 2 work 3 second
    And repeat

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

    Can you please make video on how to interface arduino with GSM module

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

    we can also use ultrasonic sensor for that?

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

    We want more videos, please

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

    Sir , ye potentiometer ki value set kese kare ge ?

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

    Can you please how to interface arduino with ULTRA SONIC SENSOR

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

    sir pura circuit bana kar karna hai kya ir sensor check by programming please reply sir

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

    Bro can we use ultrasonic sensor instead of IR sensor to increase the range?
    This is my doubt please clear it

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

    And can we replace IR sensors with RF-id?

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

    What is breadboard
    Why are you using this in all your project

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

    Why we have use here two IR sensors.?

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

    Can u please include oled tutorial

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

    GSM water pump keliye program batayye

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

    Can I use my room fans??? Please reply...
    If no , then please make a video on it.

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

      Yes you can use! For that you have to use 5V relay module for it.

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

    Himanshu bhaiyya please next video thoda fast bana lo please. Because I have to make it for my physics project please 😅

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

    How about the delay provided?

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

    Can u pllzz send me the link pf this project's program....

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

    Hello!
    Can I use 12v fan instead of 5v ? It goes with the code or I have to change it?

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

      sorry to be so off topic but does anyone know a method to get back into an instagram account??
      I somehow forgot my password. I appreciate any tricks you can offer me

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

      @Cain Matthew instablaster :)

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

      @Kason Kyrie thanks for your reply. I got to the site thru google and Im in the hacking process atm.
      Takes quite some time so I will reply here later when my account password hopefully is recovered.

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

      @Kason Kyrie It did the trick and I actually got access to my account again. I'm so happy:D
      Thank you so much, you saved my ass!

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

      @Cain Matthew Happy to help xD

  • @Ur.Podcast_Buddy
    @Ur.Podcast_Buddy 4 роки тому

    which is best ir sensor or ultrasonic sensor ?

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

    Sir make a video on line follower

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

    1st comment

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

      I want to count the exact number of visitors entering and exiting my museum. Please cooperate. Where can the parts used to make it be found? How much will the price be? How will it cost in total

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

    Sir can we do this project on aurdino nano

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

    Bus aap counter metre Banakar dikha dijiye to

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

    How can I connect this to my website?

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

    bhai please make it with arduino nano.

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

    Hi bro
    Do you have documentation copy of this project

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

    hello brother can I get the arduino code for this project

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

    Hey, buddy.could you like to give pdf or mswordfile?

  • @PallaviGangurde-gu4my
    @PallaviGangurde-gu4my 4 роки тому

    Where is a next vedio?

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

    please give me link of arduino

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

    sir muje iska code chahia

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

    Hi sir how we can call you?

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

    code to de de bhai