3 Channel Path Tracing Module
Rs. 134.00 Rs. 161.00
- Brand: https://www.vishay.com/product?docid=83760
- Product Code: SEN-LINE
- SKU -
- Availability: In Stock
- Price in reward points: 2
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.vishay.com/product?docid=83760
//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