3 Channel Path Tracing Module

3-channel IR line tracking module with adjustable sensitivity for robot path detection.

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

150,00 EGP

11 People watching this product now!

Payment Methods:

Description

It is a 5V 3 Channel Infrared Line Track Tracking Tracker Sensor Module For Arduino AVR ARM PIC.
 
Pin Definition:
  1. VCC            Voltage Supply ( 5 V)
  2. GND            Ground
  3. L                  Signal from L infrared sensor     (high / low)
  4. C                 Signal from C infrared sensor (high / low)
  5. R                 Signal from R infrared sensor (high / low)

Features:

  1. 3 channel tracking sensors, must have in your Arduino DIY Robot Projects;
  2. Uses infrared light detection, anti-jamming capability, using CTRT5000 sensor, adjustable sensitivity, stable performance;
  3. Working voltage : 5V
  4. With lights, a fixed bolt hole for easy installation

Package Includes:

1 x 3 Channel Path Tracing Module

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Line ArrayVCC/GND/OUT1-33.3-5V / GND / 3 board digital pins
📟
3 Channel Path Tracing Module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
3 Channel Path Tracing Module - Arduino Uno
3 Channel Path Tracing Module - Arduino Nano
3 Channel Path Tracing Module - Arduino Mega
3 Channel Path Tracing Module - ESP32
3 Channel Path Tracing Module - ESP8266
3 Channel Path Tracing Module - STM32
3 Channel Path Tracing Module - Raspberry Pi Pico
📄 File: 3_channel_path_tracing_module_-_arduino_uno.inoArduino Uno
511 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on Arduino Uno: 2, 3, 4
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {2, 3, 4};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
📄 File: 3_channel_path_tracing_module_-_arduino_nano.inoArduino Nano
512 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on Arduino Nano: 2, 3, 4
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {2, 3, 4};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
📄 File: 3_channel_path_tracing_module_-_arduino_mega.inoArduino Mega
512 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on Arduino Mega: 2, 3, 4
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {2, 3, 4};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
📄 File: 3_channel_path_tracing_module_-_esp32.inoESP32
511 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on ESP32: 13, 14, 27
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {13, 14, 27};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
📄 File: 3_channel_path_tracing_module_-_esp8266.inoESP8266
513 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on ESP8266: D0, D3, D4
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {D0, D3, D4};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
📄 File: 3_channel_path_tracing_module_-_stm32.inoSTM32
517 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on STM32: PA0, PA1, PA2
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {PA0, PA1, PA2};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
📄 File: 3_channel_path_tracing_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
523 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 3 digital channel pins on Raspberry Pi Pico: 10, 11, 12
6const int NUM_CHANNELS = 3;
7int sensorPins[NUM_CHANNELS] = {10, 11, 12};
8
9void setup() {
10 Serial.begin(115200);
11 for (int i = 0; i < NUM_CHANNELS; i++) pinMode(sensorPins[i], INPUT);
12}
13
14void loop() {
15 for (int i = 0; i < NUM_CHANNELS; i++) {
16 Serial.print(digitalRead(sensorPins[i])); // typically LOW = line detected (black surface)
17 Serial.print(" ");
18 }
19 Serial.println();
20 delay(100);
21}
3-channel IR reflective line-tracking array.

نظرة عامة ومواصفات المنتج — بالعربية

3 Channel Path Tracing Module متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Line Sensor وSensors، بسعر 150,00 EGP. كود المنتج لدينا: EK458. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • Operating Voltage: 5V
  • Channels: 3
  • Output: Digital signal (HIGH/LOW)
  • الاستخدامات: Black/white line tracking
  • Adjustment: Adjustable sensitivity (onboard potentiometers)
  • الوزن: 1 g

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Line Sensor في إكوسترا.

Specification

Specification

WeightWeight10,0000 g
Dimensions68 × 33 × 8 cm
Operating Voltage5V
Channels3
OutputDigital signal (HIGH/LOW)
ApplicationBlack/white line tracking
AdjustmentAdjustable sensitivity (onboard potentiometers)

Customer Reviews