5 Channel Flame Sensor Module
Rs. 100.00 Rs. 120.00
- Brand: https://www.everlight.com/SeriationProduct.aspx?Seq=38f8d00b-260
- Product Code: SEN-FLAME
- SKU -
- Availability: In Stock
- Price in reward points: 2
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
-Operating Voltage(VDC) | 3.3 to 9 |
-Detecting Range(°) | >120 |
-Board Diameter (mm) | 40 |
OVERVIEW:
-Detecting range: >120 degree
-Analog and digital outputs
-On-board potentiometer and indicators
-1% resistors to make this module more reliable and precise
-Operating Voltage: 3.3V – 9V
-Board Diameter: 40 mm.
PACKAGE INCLUDES:
1 PCS x 5 Channel Flame Sensor Module
https://www.everlight.com/SeriationProduct.aspx?Seq=38f8d00b-2605-e411-8b3b-0002a54e500f
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.ardumotive.com/how-to-use-the-flame-sensoren.html
const int sensorMin = 0; // sensor minimum
const int sensorMax = 1024; // sensor maximum
void setup() {
Serial.begin(9600);
}
void loop() {
// read the sensor on analog A0:
int sensorReading = analogRead(A0);
int range = map(sensorReading, sensorMin, sensorMax, 0, 3);
// range value:
switch (range) {
case 0: //No fire detected
Serial.println("** Νο Fire **");
break;
case 1: // A fire between 1-3 feet away.
Serial.println("** Fire **");
}
delay(1000);
}
15 DAYS