Hardware Required
- Led – 2
- 9V Battery - 1
- Snapper with DC Jack -1
- Jumper wire (Male to female) – 40 pcs
- Arduino Uno with USB cable – 1
- Tracking Sensor Module – 1
Introduction
In this project, we have used tracking sensor same as Obstacle Avoidance Sensor which absorbs black color and detects its path and turns LED ON when it detects color other than black.
HARDWARE REQUIRED
- Led – 2
- 9V Battery - 1
- Snapper with DC Jack -1
- Jumper wire (Male to female) – 40 pcs
- Arduino Uno with USB cable – 1
- Tracking Sensor Module – 1
SOFTWARE REQUIRED
Arduino IDE 1.8.5 (programmable platform for Arduino)
Click To Download: https://www.arduino.cc/en/Main/Software
SPECIFICATIONS
Tracking Module
A tracking sensor has the same principle with an obstacle avoidance sensor but has small transmitting power. The sensor detects if a light reflecting or absorbing area is in front of it. It shows which of the 2 areas it is via digital output. The Sensitivity (minimum range) of the sensor can be adjusted by the controller. This behavior can be used to automatically follow a line with a robot.
Arduino Uno
CIRCUIT CONNECTION
- Connect GND of Tracking Module with GND of Arduino Uno.
- Connect VCC of Tracking Module with Pin 5V of Arduino Uno.
- Connect Pin Signal of Tracking Module with Analog Pin A5 of Arduino Uno.
- Connect the positive terminal of LED with Digital Pin 13 of Arduino Uno.
- Connect the negative terminal of LED with GND of Arduino Uno.
CODE
Click to download the code: https://drive.google.com/open?id=1VuRslQz8nmwxWGc9ZmYSoJK_AJ_K02M0
WORKING
Welcome to Arduino Based Project which consists of Tracking Module. The basic principle of the module is being described here. When the infrared transmitter emits rays to a piece of paper, if the rays shine on a white surface, they will be reflected and received by the receiver, and pin S will output low level; If the rays encounter black lines, they will be absorbed, thus the receiver gets nothing, and pin S will output high level.
In this project, we will use a tracking module and an LED attached to pin 13 of the Uno board to build a simple circuit to make a tracking light. Since an LED has been attached to pin 13, connect the pin out to Analog Pin A5 of Uno board. When the tracking sensor detects reflection signals (white), the LED will be on. Otherwise, it will be off (black line).