How does work IR SENSOR with Arduino nano | IR SENSOR full tutorial [Codes and Circuit diagrams]

preview_player
Показать описание
Hello guys, this video includes the complete tutorial on IR SENSOR and IR SENSOR with Arduino. Also, this IR sensor video includes two main types of IR sensors, and how the two IR sensors work is presented step by step.
OK enjoy it now.
Short and sweet tutorial.Only from SriTu tech. If you think this video is good, don't forget to like and comment.

How does work IR SENSOR with Arduino nano | IR SENSOR full tutorial [Codes and Circuit diagrams]

IR Sensor

***Names of components.
***step by step.
***Make it easy.

Our store with the best prices
========================================
========================================

( Source code and circuit diagram )
=========================================
=========================================

Part's List (Our store -- SriTu Hobby)
==========================================
==========================================

Part's List (Amazon)
==========================================
==========================================

( Social media links )
==========================================
==========================================

Thanks for watching......................
If you learned something in this video,
**Like.
**Share.
**Subscribe.
What do you think? please comment below.

#SriTu_Tech_arduino #arduino_nano #ir_sensor
Рекомендации по теме
Комментарии
Автор

For the first IR sensor, does it have to be in front of the leds to work or can it be to the side?

alwff
Автор

Sir which sensor is very accurate for line tracking?

Momsfv
Автор

Sir 2nd one is not working how to solve it sir
Guide me sir

abhiofficial
Автор

why does my tcrt5000 not detect white and black properly because when I raise my robot it only detects black and when I put it down it only detects white I want it to be able to detect white and black while moving but it doesn't happen . here's my code
int OUT = 13;

void setup(){
pinMode (OUT, INPUT);
Serial.begin(9600);

}
void loop (){
bool sensorValue = digitalRead(OUT);
if (sensorValue == 0){
Serial.print("Black");
}
else (sensorValue == 1);{
Serial.print("White");
}
}

arjiesudaria