Skip to main content

Menu

Flame Sensor Arduino Compatible

ARD2-2226
Arduino Compatible ARD2 Flame Sensor

$5.95

QTYPrice
1 $5.95

Description

This Arduino compatible Flame Sensor is sensitive to flame or other light sources of the wavelength in the range of 760nm-1100nm. Usually used as a flame alarm. Its on-board, digital output interface can be directly connected with the microcontroller IO.

Test Code

int Led = 13; // define LED Interface
int buttonpin = 3; // define the flame sensor interface
int analog = A3; // define the flame sensor interface
int val; // define numeric variables val
float sensor; //read analog value

void setup () {
pinMode(Led, OUTPUT); // define LED as output interface
pinMode (buttonpin, INPUT); // output interface defines the flame sensor
pinMode (analog, INPUT); // output interface defines the flame sensor
Serial.begin(9600);
}

void loop () {
sensor = analogRead(analog);
Serial.println(sensor); // display temperature
val = digitalRead (buttonpin); // digital interface will be assigned a value of 3 to read val
// When the flame sensor detects a signal, LED flashes
if (val == HIGH) {
digitalWrite (Led, HIGH);
}
else {
digitalWrite (Led, LOW);
}
delay(1000);
}

Features

  • Sensitive to flame spectrum
  • Wide range LM393 comparator
  • Adjustable sensitivity
  • Applications such as fire detector/alarm

Specifications

Detectable wavelengths

760-1100nm

Detection angle range

Approx. 60°

Colour

Red

Material

PCB

Resources

You Might Also Like

All prices are in Australian Dollars and include GST. GST will be removed from your order if you are ordering from outside Australia.
Products may differ from pictured.
All trademarks and trade names are the properties of their respective owners. Wiltronics disclaims any proprietary interest in trademarks and trade names other than its own.

Flame Sensor Arduino Compatible

ARD2-2226

$5.95

We use cookies to ensure you have the best experience on our site. If you continue to use this site you consent to the use of these cookies. OK

Find out more in our Privacy Policy