Make Wonderful IR based Motion Tracking System with this 5 Way IR Array, Schematic of IR based Motion Tracking System module with Arduino NANO, Code for IR based Motion Tracking System module with Arduino NANO

An infrared sensor is a sensor that is used to measure infrared light radiating from an object. These sensors are primarily used for motion sensing and are used as alarms. All objects with a temperature above absolute zero emit heat energy in the form of electromagnetic radiation, this radiation is not visible to the human eye however it can be picked up via this electronic sensor. IR sensors detect changes in infrared radiation and give output in the form of voltage which can be read by the Analog pins of the microprocessor or microcontroller based development kits. These work best when the obstacle in view is black in colour. This sensor array consists of 5 TCRT IR sensor modules which are pointing downwards, an IR sensor at the front to detect obstacles and a bump switch, more commonly known as a limit switch which gives a high voltage when pressed, which is then read by our controller.

 

This is a Five IR Sensor Array with Obstacle and Bump Sensor. A 5 IR sensor use with TCRT5000 have a compact construction where the emitting-light source and the detector are arranged in the same direction to sense the presence of an object by using the reflective IR-beam from the object.

Buy 5 Way IR Array

How to use the module?

This IR sensor array module consists of 9 pins 2 of which are the VCC and GND, 5 pins are the outputs of the TCRT sensors, 1 pin is the output of the IR sensor and the remaining pin is for the limit switch.

Connections: -

• Connect the VCC pin of the module to the 5V pin of the Arduino.
• Connect the GND pin of the Arduino to the GND pin of the module.
• Connect the S1 pin of the module to A0 pin of the Arduino.
• Connect the S2 pin of the module to the A1 pin of the Arduino.
 • Connect the S3 pin of the module to the A2 pin of the Arduino.
• Connect the S4 pin of the module to the A3 pin of the Arduino.
• Connect the S5 pin of the module to the A4 pin of the Arduino.
• Connect the CLP pin of the module to the digital pin 12 of the Arduino. The CLP pin of the module is used to find the status of the limit switch or the bump switch.
• Connect the Near pin of the module to the A6 of the Arduino. The near pin displays the status of the IR sensor at the front which is used to detect obstacles.
We can follow the above instructions to easily connect the circuit or use the circuit schematic below to assemble the circuit and use the module as per our requirements. The potentiometer on the module can be used to adjust the sensitivity of the module so that we can use this module to perform desired actions. This sensor array works best if there is a high contrast between the 2 surfaces which are in question and are being detected by both the TCRT as well as the IR sensor.

 

Schematic of IR based Motion Tracking System module with Arduino NANO


Code:

int s1=A0; //TCRT1
int s2=A1; //TCRT2
int s3=A2; //TCRT3
int s4=A3; //TCRT4
int s5=A4; //TCRT5
int near=A6; //IR sensor at the front to detect obstacles
int CLP=12; //limit switch int state1;
int state2;
int state3;
int state4;
int state5;
int nearstate;
int CLPstate;
void setup(){
Serial.begin(9600);
pinMode(s1,INPUT);
pinMode(s2,INPUT);
pinMode(s3,INPUT);
pinMode(s4,INPUT);
pinMode(s5,INPUT);
pinMode(near,INPUT);
pinMode(CLP,INPUT); }
void loop(){
state1=digitalRead(s1); //TCRT1 status
state2=digitalRead(s2); //TCRT2 status
state3=digitalRead(s3); //TCRT3 status
state4=digitalRead(s4); //TCRT4 status
state5=digitalRead(s5); //TCRT5 status
nearstate=analogRead(near); //IR sensor status
CLPstate=digitalRead(CLP); //Limit switch status
Serial.print("s1 =");
Serial.println(state1); //Print TCRT1 status
Serial.print("s2 =");
Serial.println(state2); //Print TCRT2 status
Serial.print("s3 =");
Serial.println(state3); //Print TCRT3 status
Serial.print("s4 =");
Serial.println(state4); //Print TCRT4 status
Serial.print("s5 =");
Serial.println(state5); //Print TCRT5 status
Serial.print("IR =");
Serial.println(nearstate); //Print IR sensor status
Serial.print("BMP =");
Serial.println(CLPstate); //Print Limit switch status
delay(100);
}

After uploading the above code we can successfully view the output on the serial monitor. 

Applications: 

• Line follower robot
• Shaft encoder
• Obstacle avoiding robot
• Warehouse robots
Ir sensor arraySensors & modules