Wish List 0

Tcrt 5000 Dual Channel Line Tracking Sensor

Rs. 27.00 Rs. 32.00

This is TCRT 5000 Dual Channel Line Tracking sensor module.


This IR reflective sensor Module used TCRT5000 IR Sensor to discover color and distance. This sensor module consists of an IR transmitter & an IR receiver. IR Transmitter constantly emits IR signal that is then reflected with the aid of an impediment and is then detected by means of the IR receiver.


TCRT5000 Infrared Reflective Sensor Module is often utilized in line following robots, object sorting Robots due to the fact this module can feel if a floor is white or black. The measuring distance range from 1mm to 8mm and the vital point is set 2.5mm.


There is likewise an onboard potentiometer to regulate the sensitivity. The infrared diode could be emitting the infrared constantly whilst the module is powered ON, when the emitted infrared light has not been meditated or the electricity isn't always massive enough, the receiver diode will within the off nation and output pin i.E. DO might be LOW.


Note: The new update with this product is ready pin locations. The photograph shows the series of one) VCC. 2) GND. 3)D0. Four)A0. But a new series is 1) VCC. 2)D0. 3)A0. 4) GND.


Features :

Designed with the meditated infrared sensor, indicator light.

Built in a potentiometer for sensitivity manage.

On-board LM393 voltage comparator chip and infrared sensing probe TCRT5000L

Onboard signal output instructions, the output is the relatively effective sign at the equal time, the indicator lamp mild output signal can be immediately and unmarried-chip microcomputer IO connection & middot

Signal detection sensitivity can adjust

Reserve all the way greater circuits (P3 voltage drawn)

Using the TCRT5000 infrared mirrored image sensor

Output form: virtual switch output (zero and 1)

A constant bolt hollow, convenient installation.


SPECIFICATIONS
Operating Voltage(VDC)        3.5 to 5
Supply Current (A)            0.015
Optimal Sensing Distance(mm)  3

OVERVIEW:

-Operating Voltage                          3.5V-5V

-Supply Current                               15mA

-Optimal Sensing Distance            3mm

-Designed with the reflected infrared sensor, indicator light.

-Built in a potentiometer for sensitivity control.

-On-board LM393 voltage comparator chip and infrared sensing probe TCRT5000L

-Signal detection sensitivity can adjust

-Reserve all the way more circuits (P3 voltage drawn)


PACKAGE INCLUDES:

1 PCS x Tcrt5000 Dual Channel Line Tracking Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//http://arduinolearning.com/code/tcrt5000-reflective-optical-sensor-module-example.php

const int tcrtPin = 2; //the tracking module attach to pin 2

const int ledPin = 13;

 

void setup()

{

  pinMode(tcrtPin, INPUT); // set trackingPin as INPUT

  pinMode(ledPin, OUTPUT); //set ledPin as OUTPUT

}

 

void loop()

{

  boolean val = digitalRead(tcrtPin); // read the value of tcrt5000

  if(val == HIGH) //if it is HiGH

  { 

    digitalWrite(ledPin, LOW);

  }

  else

  {

    digitalWrite(ledPin, HIGH);

  }

}

15 days 

Write a review

Please login or register to review