Flame Sensor Detection Module
Rs. 25.00 Rs. 29.00
- Brand: https://www.everlight.com/SeriationProduct.aspx?Seq=38f8d00b-260
- Product Code: SEN-FLAME
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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
https://www.everlight.com/SeriationProduct.aspx?Seq=38f8d00b-2605-e411-8b3b-0002a54e500f
//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