

The Flame Sensor (Manufacturer: Zadetector, Part ID: 220v) is a device designed to detect the presence of flame or fire by sensing the infrared (IR) radiation emitted by the flame. This sensor is widely used in safety systems to prevent fires and ensure the safe operation of equipment. It is particularly useful in industrial applications, home safety systems, and robotics projects where flame detection is critical.








The following table outlines the key technical details of the Zadetector Flame Sensor (220v):
| Parameter | Value |
|---|---|
| Operating Voltage | 3.3V to 5V DC |
| Detection Range | 760 nm to 1100 nm (IR wavelength) |
| Detection Angle | 60° |
| Output Type | Digital and Analog |
| Digital Output Voltage | High (1) or Low (0) |
| Analog Output Voltage | Proportional to flame intensity |
| Operating Temperature | -25°C to 85°C |
| Dimensions | 32mm x 14mm x 8mm |
The Zadetector Flame Sensor has a 3-pin interface. The pin configuration is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply pin (3.3V to 5V DC) |
| 2 | GND | Ground pin |
| 3 | OUT | Output pin (Digital or Analog, depending on usage) |
Below is an example of how to connect and use the flame sensor with an Arduino UNO:
// Flame Sensor Example Code
// Manufacturer: Zadetector, Part ID: 220v
// This code reads the digital output of the flame sensor and turns on an LED
// when a flame is detected.
const int flameSensorPin = 2; // Digital pin connected to the sensor's OUT pin
const int ledPin = 13; // Built-in LED pin on Arduino
void setup() {
pinMode(flameSensorPin, INPUT); // Set flame sensor pin as input
pinMode(ledPin, OUTPUT); // Set LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int flameDetected = digitalRead(flameSensorPin); // Read sensor output
if (flameDetected == HIGH) {
// Flame detected
digitalWrite(ledPin, HIGH); // Turn on LED
Serial.println("Flame detected!");
} else {
// No flame detected
digitalWrite(ledPin, LOW); // Turn off LED
Serial.println("No flame detected.");
}
delay(500); // Wait for 500ms before next reading
}
False Detections:
No Detection of Flame:
Unstable Output:
Q1: Can the flame sensor detect flames through glass?
A1: No, the sensor cannot detect flames through glass, as glass blocks most IR radiation.
Q2: Can I use the flame sensor outdoors?
A2: Yes, but ensure it is protected from direct sunlight and weather conditions to avoid false detections or damage.
Q3: What is the maximum distance for flame detection?
A3: The detection range depends on the intensity of the flame. Typically, it can detect flames up to 1 meter away under normal conditions.
Q4: Can I use multiple flame sensors in a single system?
A4: Yes, you can use multiple sensors to cover a larger area. Ensure each sensor is connected to a separate input pin on your microcontroller.
By following this documentation, you can effectively integrate the Zadetector Flame Sensor (220v) into your projects for reliable flame detection.