Wish List 0

Flame Sensor Detection Module

Rs. 25.00 Rs. 29.00

-This tiny Flame sensor infrared receiver module ignition supply detection module is Arduino well suited can use to detect flame or wavelength of the light supply within 760nm~1100nm also useful for Lighter flame come across at the distance 80cm. 

-Greater the flame, farther the take a look at distance.
-It has the Detect angle of  60° and very sensitive to flame spectrum.

-It produces the one channel output signal at the D0 terminal for in addition processing like an alarm device or any switching system.
-The sensitivity is adjustable with the help of blue potentiometer given on the board.

Features :
-Indicator light: a green one for the switch, a crimson one for strength.
-Built in a potentiometer for sensitivity manipulate.
-Onboard sign output indication, output powerful signal is excessive, on the equal time the indicator mild up, the output signal can directly connect to microcontroller IO.
-Can locate hearth or wavelength in 760 ~ 1100 nm nano in the scope of the mild source.
-Detection angle about 60 levels, the flame spectrum mainly sensitive.
-The flame of the most touchy sensors flame, the everyday mild is also a response, commonly used for fire alarm purposes."

SPECIFICATIONS:
Output Channel          1
Operating Voltage(VDC)  3.3 to 5
Mounting Hole(mm)       3

OVERVIEW:

-Output Channel: 1

-Power Supply: 3.3/5V

-Built in a potentiometer for sensitivity control.

-Onboard signal output indication, output effective signal is high, at the same time the indicator light up, the output signal can directly connect to microcontroller IO.

-Detection angle about 60 degrees, the flame spectrum especially sensitive.

-The flame of the most sensitive sensors flame, the regular light is also a response, generally used for fire alarm purposes.

-₹ 126.00 (inc GST)

-₹ 106.78 (+18% GST extra)

PACKAGE INCLUDES:

1 PCS x Flame Sensor Detection Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electronicshub.org/arduino-flame-sensor-interface/

const int buzzerPin = 12;

const int flamePin = 11;

int Flame = HIGH;


void setup() 

{

  pinMode(buzzerPin, OUTPUT);

  pinMode(flamePin, INPUT);

  Serial.begin(9600);

}


void loop() 

{

  Flame = digitalRead(flamePin);

  if (Flame== LOW)

  {

    Serial.println("Fire!!!");

    digitalWrite(buzzerPin, HIGH);

  }

  else

  {

    Serial.println("No worries");

    digitalWrite(buzzerPin, LOW);

  }

}

15 days

Write a review

Please login or register to review