ย  FLAME SENSOR INTERFACE USING ARDUINOย 

 

 

๐Ÿ”ฅFIRE SENSOR Interface with Arduino โ€“ Short Note

Overview:

A flame sensor is used to detect the presence of fire or flame. It typically detects infrared light emitted by a flame. These sensors are commonly used in fire detection systems and safety applications.

โœ…Working Principle:

  • The flame sensor has an IR receiver (like photodiode or phototransistor) tuned to the wavelength of fire.

  • It gives LOW (0) when flame is detected.

  • It gives HIGH (1) when no flame is detected.

๐Ÿ”ŒConnection:

  • VCC โ†’ Arduino 5V

  • GND โ†’ Arduino GND

  • OUT โ†’ Arduino Digital pin (e.g., D8)

  • BUZZER โ†’ Arduino Digital pin (e.g., D13)

๐Ÿ”Œ Circuit Diagram:

 

 

๐Ÿ“ Sample Arduino Code:

int sensorPin = 8; // FLAME sensor output pin
int ledPin = 13; // LED to indicate object detection

void setup() {
pinMode(sensorPin, INPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600);
}

void loop() {
int sensorValue = digitalRead(sensorPin);

if (sensorValue == LOW) {
digitalWrite(ledPin, HIGH);
Serial.println(“Fire Detected”);
} else {
digitalWrite(ledPin, LOW);
Serial.println(“No Fire”);
}

delay(1000); // Delay for readability
}

๐Ÿ“Ÿ Arduino Use Case

When connected to Arduino, the FIRE sensor can be used to:

  • Fire-fighting robots

  • Safety and security systems

  • Industrial fire alarms

 

๐Ÿ“ž For More Details & Project Support:

 

Power Integrated Solutions
Networks | Electronics | Home Automation | Water Automation | IoT | PLC | Embedded | DBMS

๐Ÿ“ Location:
10A/3, Radhakrishnan Colony,
Sasthri Road, Tennur,
Tiruchirappalli, Tamil Nadu โ€“ 620017


๐Ÿ“ View on Google Maps

๐Ÿ“ง Email:

๐Ÿ“ฑ Phone / WhatsApp:
+91 76393 85448
+91 82488 85959

๐ŸŒ Letโ€™s Build the Future with Innovation in Education & Technology!