Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use IR FLAME: Examples, Pinouts, and Specs

Image of IR FLAME
Cirkit Designer LogoDesign with IR FLAME in Cirkit Designer

Introduction

The IR FLAME sensor by Oky is an electronic device designed to detect the presence of a flame or fire by sensing the infrared (IR) radiation emitted by the combustion process. This sensor is commonly used in safety systems for fire alarms, flame monitoring in industrial environments, and robotics applications where fire detection is crucial.

Explore Projects Built with IR FLAME

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino-Based Flame Detection and Water Pump Activation System with Buzzer and LED Alerts
Image of Automatic fire detection using a fire sensor using a 12 v DC motor output as a water pump: A project utilizing IR FLAME in a practical application
This circuit is a fire detection and response system using an Arduino UNO. It utilizes an IR flame sensor to detect fire, and upon detection, it activates a relay to turn on a water pump, sounds a buzzer, and lights up an LED to provide visual and auditory alerts.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO Flame Detection Robot with LCD Display and Buzzer Alert
Image of fire detctor: A project utilizing IR FLAME in a practical application
This circuit is a flame detection and response system using an Arduino UNO. It includes an IR sensor to detect flames, which triggers motors, LEDs, a buzzer, and an LCD display to indicate the presence of a flame. The system activates motors and a red LED, sounds the buzzer, and displays a warning message on the LCD when a flame is detected, otherwise, it shows a safe status with a green LED.
Cirkit Designer LogoOpen Project in Cirkit Designer
Flame Detection and Intrusion Alert System with Dual Buzzers
Image of flame detector: A project utilizing IR FLAME in a practical application
This circuit consists of two sensor-triggered buzzer systems. One buzzer is activated by a flame sensor, and the other by an IR sensor. Both systems are independently powered by separate 9V batteries and are designed to sound an alarm when their respective sensors detect a flame or an IR signal.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO R4 WiFi Fire Detection System with Solar Power and Buzzer Alert
Image of New Dash: A project utilizing IR FLAME in a practical application
This circuit is designed around an Arduino UNO R4 WiFi, which is configured to detect the presence of fire using an IR FLAME sensor array and alert through a buzzer. The Arduino is powered by a UPS module, which in turn is charged by a solar panel through a solar charge controller connected to a 12V battery. The system also includes a DHT22 sensor for measuring temperature and humidity, and an ADXL345 accelerometer for motion detection, although these sensors are not integrated into the provided code.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with IR FLAME

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Automatic fire detection using a fire sensor using a 12 v DC motor output as a water pump: A project utilizing IR FLAME in a practical application
Arduino-Based Flame Detection and Water Pump Activation System with Buzzer and LED Alerts
This circuit is a fire detection and response system using an Arduino UNO. It utilizes an IR flame sensor to detect fire, and upon detection, it activates a relay to turn on a water pump, sounds a buzzer, and lights up an LED to provide visual and auditory alerts.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of fire detctor: A project utilizing IR FLAME in a practical application
Arduino UNO Flame Detection Robot with LCD Display and Buzzer Alert
This circuit is a flame detection and response system using an Arduino UNO. It includes an IR sensor to detect flames, which triggers motors, LEDs, a buzzer, and an LCD display to indicate the presence of a flame. The system activates motors and a red LED, sounds the buzzer, and displays a warning message on the LCD when a flame is detected, otherwise, it shows a safe status with a green LED.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of flame detector: A project utilizing IR FLAME in a practical application
Flame Detection and Intrusion Alert System with Dual Buzzers
This circuit consists of two sensor-triggered buzzer systems. One buzzer is activated by a flame sensor, and the other by an IR sensor. Both systems are independently powered by separate 9V batteries and are designed to sound an alarm when their respective sensors detect a flame or an IR signal.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of New Dash: A project utilizing IR FLAME in a practical application
Arduino UNO R4 WiFi Fire Detection System with Solar Power and Buzzer Alert
This circuit is designed around an Arduino UNO R4 WiFi, which is configured to detect the presence of fire using an IR FLAME sensor array and alert through a buzzer. The Arduino is powered by a UPS module, which in turn is charged by a solar panel through a solar charge controller connected to a 12V battery. The system also includes a DHT22 sensor for measuring temperature and humidity, and an ADXL345 accelerometer for motion detection, although these sensors are not integrated into the provided code.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Fire alarm systems
  • Automatic fire extinguishing systems
  • Environmental monitoring for fire-prone areas
  • Robotics for fire detection and avoidance

Technical Specifications

Key Technical Details

  • Operating Voltage: 3.3V to 5V
  • Detection Range: Up to 1 meter (depending on the flame size)
  • Detection Angle: Approximately 60 degrees
  • Output Type: Digital and Analog
  • Response Time: < 1 second

Pin Configuration and Descriptions

Pin Number Pin Name Description
1 VCC Power supply (3.3V to 5V)
2 GND Ground
3 DOUT Digital output; HIGH when flame is detected
4 AOUT Analog output; voltage proportional to flame intensity
5 NC Not connected (reserved for manufacturer use)

Usage Instructions

How to Use the Component in a Circuit

  1. Power Connection: Connect the VCC pin to a 3.3V or 5V power supply and the GND pin to the ground of the power source.
  2. Output Connection: Connect the DOUT pin to a digital input pin on a microcontroller to detect the presence of a flame. For analog signal processing, connect the AOUT pin to an analog input pin on the microcontroller.
  3. Adjust Sensitivity: Use the onboard potentiometer to adjust the sensitivity of the sensor. Turn clockwise to increase sensitivity and counterclockwise to decrease it.

Important Considerations and Best Practices

  • Avoid exposure to direct sunlight, as it may interfere with the sensor's ability to detect flames accurately.
  • Keep the sensor away from heat sources that do not produce flames to prevent false alarms.
  • Ensure that the sensor is mounted securely and is not subjected to mechanical vibrations.
  • Regularly clean the sensor's surface to maintain its sensitivity and accuracy.

Example Code for Arduino UNO

// Define the digital and analog pins connected to the sensor
const int flameSensorDigitalPin = 2; // DOUT connected to digital pin 2
const int flameSensorAnalogPin = A0;  // AOUT connected to analog pin A0

void setup() {
  pinMode(flameSensorDigitalPin, INPUT);
  Serial.begin(9600);
}

void loop() {
  int flameDetected = digitalRead(flameSensorDigitalPin);
  int flameIntensity = analogRead(flameSensorAnalogPin);

  if (flameDetected == HIGH) {
    Serial.println("Flame detected!");
  } else {
    Serial.println("No flame detected.");
  }

  // Print the analog value which represents the flame intensity
  Serial.print("Flame intensity: ");
  Serial.println(flameIntensity);

  delay(500); // Wait for half a second before reading again
}

Troubleshooting and FAQs

Common Issues Users Might Face

  • False Alarms: Adjust the sensitivity potentiometer to reduce false alarms caused by other heat sources or sunlight.
  • No Response: Ensure that the sensor is correctly powered and that the pins are properly connected to the microcontroller.
  • Inconsistent Readings: Check for any obstructions or dirt on the sensor's surface and clean it gently with a soft cloth.

Solutions and Tips for Troubleshooting

  • If the sensor is not detecting flames consistently, recalibrate the sensitivity using the onboard potentiometer.
  • Verify that the sensor is not placed near devices that emit strong IR radiation, as this can interfere with flame detection.
  • For issues with the analog output, ensure that the microcontroller's analog-to-digital converter is functioning correctly and that the reference voltage is stable.

FAQs

Q: Can the IR FLAME sensor detect flames through glass? A: No, the sensor cannot detect flames through glass as it blocks IR radiation.

Q: What is the maximum distance the sensor can detect a flame? A: The sensor can detect flames up to 1 meter away, but this can vary based on the flame's size and intensity.

Q: Is the sensor waterproof? A: No, the IR FLAME sensor is not waterproof. Protect it from moisture to prevent damage.

Q: Can the sensor differentiate between different types of flames? A: The sensor cannot differentiate between types of flames; it only detects the presence of IR radiation consistent with a flame.

For further assistance, please contact Oky technical support.