Flame Sensor Module 3Pin

SKU: EK397 Categories: , Tags: ,

Apple Shopping Event

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

59,85 EGP

17 People watching this product now!

Payment Methods:

Description

<p>The Flame Sensor Module can detect flames in the 760 – 1100 nanometer wavelength range. Small flames like a lighter flame can be detected at roughly 0.8m. The detection angle is roughly 60 degrees and the sensor is particularly sensitive to the flame spectrum.</p> <p>An on-board LM393 op-amp is used as a comparator to adjust the sensitivity level. The sensor has a digital and analog output and sensitivity can be adjusted via the blue potentiometer.</p> <p>This Flame Sensor Module is used to detect fire/flame source or other light sources of the wavelength in the range of 760nm – 1100 nm. It is based on the YG1006 sensor which is a high speed and high sensitive NPN silicon phototransistor. Due to its black epoxy, the sensor is sensitive to infrared radiation.</p> <p>The sensor can be a great addition in a firefighting robot, it can be used as a robot eyes to find the fire source. When the sensor detects flame the Signal LED will light up and the D0 pin goes LOW.</p> <p>The module has 2 outputs: Analogue, which gives a real-time voltage output signal on thermal resistance, and digital which allows temperature thresholds to be set via a potentiometer.</p> <hr /> <h4><strong>Features :</strong></h4> <ol> <li>High Photo Sensitivity</li> <li>Fast Response Time</li> <li>Sensitivity adjustable</li> <li><span class=""s1"">Detects a flame or a light source of a wavelength in the range of 760nm-1100 nm.</span></li> <li><span class=""s1"">Detection range: up to 100 cm.</span></li> <li>Adjustable detection range.</li> <li><span class=""s1"">Detection angle about 60 degrees, it is sensitive to the flame spectrum.</span></li> <li><span class=""s1"">Comparator chip LM393 makes module readings stable.</span></li> <li><span class=""s1"">Operating voltage 3.3V-5V.</span></li> <li><span class=""s1"">Digital and Analog Output. </span></li> <li><span class=""s1"">Power indicator and digital switch output indicator.</span></li> </ol> <hr /> <h4><strong>Package Includes :</strong></h4> <p>1 x Flame Sensor Module</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Flame SensorVCC/GND/DOUT3.3-5V / GND / board digital pin
📟
Flame Sensor Module 3Pin
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Flame Sensor Module 3Pin - Arduino Uno
Flame Sensor Module 3Pin - Arduino Nano
Flame Sensor Module 3Pin - Arduino Mega
Flame Sensor Module 3Pin - ESP32
Flame Sensor Module 3Pin - ESP8266
Flame Sensor Module 3Pin - STM32
Flame Sensor Module 3Pin - Raspberry Pi Pico
📄 File: flame_sensor_module_3pin_-_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: flame_sensor_module_3pin_-_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: flame_sensor_module_3pin_-_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: flame_sensor_module_3pin_-_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: flame_sensor_module_3pin_-_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: flame_sensor_module_3pin_-_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: flame_sensor_module_3pin_-_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}
IR-based flame detector with onboard comparator - digital output, sensitivity set by an onboard potentiometer.

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

Flame Sensor Module 3Pin متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Flame Sensor وSensors، بسعر 59,85 EGP. كود المنتج لدينا: EK397. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

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

  • Product Name: Flame Sensor Module
  • Sensor Type: Flame Detection Sensor
  • Detection Method: Infrared Light (Flame Spectrum)
  • Detection Angle: Up to 60°
  • Detection Distance: Up to 80 cm
  • Operating Voltage: 3.3V – 5V
  • Output Type: Digital & Analog
  • Sensitivity Adjustment: Onboard Potentiometer

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

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

Specification

Specification

WeightWeight6 g
Dimensions4 × 1,5 × 1 cm
Product NameFlame Sensor Module
Sensor TypeFlame Detection Sensor
Detection MethodInfrared Light (Flame Spectrum)
Detection AngleUp to 60°
Detection DistanceUp to 80 cm
Operating Voltage3.3V – 5V
Output TypeDigital & Analog
Sensitivity AdjustmentOnboard Potentiometer
Response TimeFast
IndicatorPower & Status LEDs
ApplicationFire Detection, Safety Systems, Robotics, Arduino Projects

Customer Reviews