BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor

SKU: EK466 Category: Tags: ,

Apple Shopping Event

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

125,00 EGP

4 People watching this product now!

Payment Methods:

Description

<p>5 Channel Line Tracking Sensor Module (BFD-1000) is a sensor board designed for use with line follower robots. This module has been sufficient to meet the day-to-day task of tracking, but also with the infrared distance sensor and touch detection sensor, the board makes your robot design able to adapt to the situation easily.</p> <p>BFD – 1000 specifically designed as a black line (white) XunQu, especially suitable for the complex of black and white line, cross black and white line detection, it has 6 roads high sensitivity infrared sensor (5 escapes patrol, 1 road), to the recognition of black and white line accurately, it has the following functions and features:<br />1. BFD – 1000 integrated no.5 high sensitivity tracking sensor, for the environmental impact of small, can accurate tracking to complex                 black line (white line), for the simple black line tracking more comfortable.<br />2. BFD – 1000 integrated infrared Barrie sensor, escapes distance can be regulated through the slide rheostat.<br />3. BFD – 1000 has a specially designed touch detection sensor, from the design of the robot is more simple.<br />4. BFD – 1000 all of the output signal to a digital signal (v), conveniently connected with MCU.<br />5. All sensor output state BFD – 1000 have LED lights as instructions, convenient debugging.<br />6. BFD – 1000 support voltage of 3.0-5.5 v meet the demand of most systems.<br />7. Using the high sensitivity of the sensor, tracking range between 0.5 mm to 40 mm any change and don’t need to do any adjustment.</p> <p><strong>Note: Product image may vary in terms of design.</strong></p> <hr /> <p><strong>Features:</strong></p> <ol> <li>5 channel high sensitivity sensor</li> <li>High accuracy for tracking black line.</li> <li>Distance sensor at the front, distance can be adjusted</li> <li>Special touch sensor design, making the robot design simple</li> <li>Digital output signal</li> <li>Indicator LEDs</li> </ol> <hr /> <h4><strong>Package Includes:</strong></h4> <p>1 x BFD-1000 Five Channel Infrared Tracking Module</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Line ArrayVCC/GND/OUT1-53.3-5V / GND / 5 board digital pins
📟
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - Arduino Uno
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - Arduino Nano
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - Arduino Mega
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - ESP32
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - ESP8266
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - STM32
BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor - Raspberry Pi Pico
📄 File: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_arduino_uno.inoArduino Uno
523 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on Arduino Uno: 2, 3, 4, 5, 6
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {2, 3, 4, 5, 6};
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: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_arduino_nano.inoArduino Nano
524 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on Arduino Nano: 2, 3, 4, 5, 6
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {2, 3, 4, 5, 6};
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: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_arduino_mega.inoArduino Mega
524 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on Arduino Mega: 2, 3, 4, 5, 6
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {2, 3, 4, 5, 6};
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: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_esp32.inoESP32
527 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on ESP32: 13, 14, 27, 26, 25
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {13, 14, 27, 26, 25};
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: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_esp8266.inoESP8266
529 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on ESP8266: D0, D3, D4, D5, D6
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {D0, D3, D4, D5, D6};
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: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_stm32.inoSTM32
537 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on STM32: PA0, PA1, PA2, PA3, PA4
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {PA0, PA1, PA2, PA3, PA4};
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: bfd-1000_five_channel_infrared_tracking_module_tracing_sensor_-_raspberry_pi_pico.inoRaspberry Pi Pico
539 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 5 digital channel pins on Raspberry Pi Pico: 10, 11, 12, 13, 14
6const int NUM_CHANNELS = 5;
7int sensorPins[NUM_CHANNELS] = {10, 11, 12, 13, 14};
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}
5-channel IR reflective line-tracking array.

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

BFD-1000 Five Channel Infrared Tracking Module Tracing Sensor متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 125,00 EGP. كود المنتج لدينا: EK466. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • الوزن: 1 g

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

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm

Customer Reviews