Wish List 0

3 Channel Path Tracing Module

Rs. 134.00 Rs. 161.00

It is a 5V 3 Channel Infrared Line Track Tracking Tracker Sensor Module For Arduino AVR ARM PIC.

Features:
-3 channel monitoring sensors, have to have for your Arduino DIY Robot Projects;
-Uses infrared mild detection, anti-jamming functionality, the use of CTRT5000 sensor, adjustable sensitivity, strong overall performance;
-Working voltage : 5V
-With lighting, a set bolt hollow for easy set up"

SPECIFICATIONS:
Peak operating distance           2.5 mm
Operating range within             > 20 % relative collector
current                            0.2 mm to 15 mm
Typical output current under test  IC = 1 mA
Daylight blocking                  filter
Emitter wavelength                 950 nm
Lead (Pb)                          free soldering released
Compliant to RoHS directive 2

OVERVIEW:

-Working voltage: 5V

-Uses infrared light detection, anti-jamming capability, using CTRT5000 sensor, adjustable sensitivity, stable performance

-With lights, a fixed bolt hole for easy installation


PACKAGE INCLUDES:

1 PCS x 3 Channel Line Tracing Module


//SOURCE CODE TAKEN FROM BELOW LINK

//http://arduinolearning.com/amp/code/3-channel-tracking-sensor-example.php

define LEFT_SENSORPIN 4

#define CENTER_SENSORPIN 5

#define RIGHT_SENSORPIN 6

 

void setup()

{

  Serial.begin(9600);

  pinMode(LEFT_SENSORPIN,INPUT);

  pinMode(CENTER_SENSORPIN,INPUT);

  pinMode(RIGHT_SENSORPIN,INPUT);

}

 

void loop()

{

  // read input from sensors

  byte leftSensor=digitalRead(LEFT_SENSORPIN);

  byte centerSensor=digitalRead(CENTER_SENSORPIN);

  byte rightSensor=digitalRead(RIGHT_SENSORPIN);

 

  Serial.print(" Left : ");

  Serial.print(leftSensor);

  Serial.print(" Centre : ");

  Serial.print(centerSensor);

  Serial.print(" Right : ");

  Serial.print(rightSensor);

  Serial.println();

  delay(1000);

}

 

15 days

Write a review

Please login or register to review