5-Channel Flame Sensor Module

  1. Detecting range: >120 degree
  2. Analog and digital outputs
  3. On-board potentiometer and indicators
  4. 1% resistors to make this module more reliable and precise
  5. Operating Voltage: 3.3V – 9V
  6. Board Diameter: 40 mm.
SKU: EK859 Categories: , Tags: ,

Apple Shopping Event

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

150,00 EGP

4 People watching this product now!

Payment Methods:

Description

5-Channel Flame Sensor Module is a 5 channel flame detector module used to detect flame in the larger area( >120 degrees).

If you need a robot which should detect any fire around, then this module will be very useful for you. It detects the fire with 5 flame sensors which are arranged with 30 degrees. 

This module outputs an analog signal, which would be more precise, and also digital signal which would be more easy to use, you can adjust the digital output sensitivity by the onboard potentiometer. The 5 LED indicators are helpful in your debugging, the high-precision resistors also make this sensor more precise than other flame sensors.

This module is sensitive to the flame and radiation. It also can detect ordinary light source in the range of a wavelength 760nm-1100 nm. lighter flame test distance of 80cm, for the greater the flame, the farther the distance test.

5-Channel Flame Sensor Module -Robu.in


Features :

  1. Analog and digital outputs
  2. On-board potentiometer and indicators
  3. 1% resistors to make this module more reliable and precise
  4. Can output the analog signal can be accurately measured, for high precision applications
  5. Adjustable detection range digital output, analog output sensitivity adjustable design flexibility

Package Includes :

1 x 5-Channel Flame Sensor Module.

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Flame Sensor (ch. 1)VCC/GND/DOUT3.3-5V / GND / board digital pin (repeat wiring per channel)
📟
5-Channel Flame Sensor Module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
5-Channel Flame Sensor Module - Arduino Uno
5-Channel Flame Sensor Module - Arduino Nano
5-Channel Flame Sensor Module - Arduino Mega
5-Channel Flame Sensor Module - ESP32
5-Channel Flame Sensor Module - ESP8266
5-Channel Flame Sensor Module - STM32
5-Channel Flame Sensor Module - Raspberry Pi Pico
📄 File: 5-channel_flame_sensor_module_-_arduino_uno.inoArduino Uno
550 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Arduino Uno. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
📄 File: 5-channel_flame_sensor_module_-_arduino_nano.inoArduino Nano
551 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Arduino Nano. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
📄 File: 5-channel_flame_sensor_module_-_arduino_mega.inoArduino Mega
551 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Arduino Mega. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
📄 File: 5-channel_flame_sensor_module_-_esp32.inoESP32
546 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 15 on ESP32. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN 15
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
📄 File: 5-channel_flame_sensor_module_-_esp8266.inoESP8266
548 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin D5 on ESP8266. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN D5
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
📄 File: 5-channel_flame_sensor_module_-_stm32.inoSTM32
548 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin PB0 on STM32. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN PB0
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
📄 File: 5-channel_flame_sensor_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
558 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 15 on Raspberry Pi Pico. This module has an onboard comparator (potentiometer sets sensitivity), so it outputs a clean digital HIGH/LOW - no ADC math needed.
6#define FLAME_PIN 15
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(FLAME_PIN, INPUT);
11}
12
13void loop() {
14 int flameDetected = digitalRead(FLAME_PIN); // most modules: LOW = flame detected
15 if (flameDetected == LOW) {
16 Serial.println("FLAME DETECTED!");
17 } else {
18 Serial.println("No flame.");
19 }
20 delay(300);
21}
5-direction IR flame sensor array; each channel behaves like a simple digital flame sensor - read each pin the same way.

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

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

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

  • جهد التشغيل (فولت): 3.3 to 9
  • Detecting Rangea: >120
  • Board Diameter Mm: 40
  • Total Diameter Mm: 57
  • الوزن: 8 g

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

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

Specification

Specification

WeightWeight8,0000 g
Dimensions3 × 2 × 1 cm
operating-voltage-vdc3.3 to 9
detecting-rangea>120
board-diameter-mm40
total-diameter-mm57

Customer Reviews