Это видео недоступно.
Сожалеем об этом.

Interfacing 2 IR sensors with arduino |blinking LED by 2 IR sensors |full code explained in hindi..

Поделиться
HTML-код
  • Опубликовано: 8 июл 2022
  • Interfacing two IR sensors with arduino uno | blinking LED by 2 IR sensors | full code explained in hindi...
    In this video I have explained that how to blink LED using two IR sensors and arduino uno.
    My other video links:
    What is transistor :-
    • What is transistor | t...
    How to blink LED with ARDUINO :-
    • How to blink LED with ...
    What is arduino :-
    • what is Arduino | ardu...
    What is resistor :-
    • what is resistor? | re...
    Resistor in series and parallel :-
    • resistor in series and...
    What is potentiometer:-
    • what is potentiometer ...
    How to use breadboard:-
    • what is breadboard? | ...
    How to use multimeter:-
    • learn about multimeter...
    I will explain you in both theoretically and practically so you understand it easily.
    Make sure you subscribe to channel. Because I need your support.
    Share this video to family and friends and like the video.
    If you have any doubt comment down.
    Thanks for watching....
    #irsensor #arduino #arduinoproject #arduinouno #electronic #breadboard #funwithelectronics

Комментарии • 6

  • @haswanthkumaryadav22
    @haswanthkumaryadav22 Год назад +2

    Super working sir

  • @rohitnaik9199
    @rohitnaik9199 Год назад +1

    Bro Arduino connected with 3 ir sensor please make an video

    • @FunWithElectronicss
      @FunWithElectronicss  Год назад +2

      Bro arduino with 3 IR sensor, have many outcomes and we can use it in many different ways. It depends on what project we are gonna do.

  • @user-hj9we9ti1t
    @user-hj9we9ti1t 8 месяцев назад

    Bro send the code

  • @cadillacescalade5428
    @cadillacescalade5428 3 месяца назад

    I use this code an It doesn't work
    I use exact whats here..
    Int sensor1 = 6;
    Int sensor2 = 5;
    Int led = 8;
    PinMode (sensor1, INPUT);
    PINMODE (sensor2, INPUT);
    PINMODE (led, OUTPUT);
    If (digitalRead (sensor1)==LOW)
    {
    digitalWrite (led,HIGH);
    delay (20);
    }
    else if (digitalRead(sensor2)==LOW)
    {
    digitalWrite (led,LOW);
    delay (20);
    }
    }