Wish List 0

5 Channel Flame Sensor Module

Rs. 100.00 Rs. 120.00

-Five-Channel Flame Sensor Module is a 5 channel flame detector module used to come across flame inside the larger location( >a hundred and twenty ranges).

-If you want a robotic which have to locate any fire round, then this module might be very beneficial for you.
-It detects the fire with 5 flame sensors which might be arranged with 30 stages. 

-This module outputs an analog sign, which might be greater unique, and also digital sign which might be extra smooth to apply, you may modify the virtual output sensitivity by using the onboard     potentiometer.
-The 5 LED signs are helpful on your debugging, the excessive-precision resistors also make this sensor extra unique than other flame sensors.

-This module is touchy to the flame and radiation.
-It can also stumble on regular light source in the range of a wavelength 760nm-1100 nm.
-Lighter flame check distance of 80cm, for the extra the flame, the farther the distance test.

Features :
1. Analog and digital outputs
2. On-board potentiometer and indicators
3. 1% resistors to make this module more reliable and precise
4. Can output the analog signal can be accurately measured, for high precision applications
5. Adjustable detection range digital output, analog output sensitivity adjustable design flexibility


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


//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

Write a review

Please login or register to review