The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.Detects open flame by detecting light that is in the infrared spectrum.
The Flame Sensor Module is used to detect an open flame by detecting light that is in the infrared spectrum as produced by an open flame.
This sensor module is primarily used to detect an open flame. It does this by detecting light that is in the IR (infrared) spectrum which is emitted by a flame. That spectrum is typically in the range of 700-1100nm.
This module is similar to a regular IR detector, but with a broader detection range. It can be used as a general IR detector for other applications where a broad detection range is desired.
The module has both an analog output and a digital output with sensitivity adjustment on the module.
The Analog output on ‘A0‘ is normally a voltage of approximately 1/2 Vcc when no signal is detected. The actual voltage level will depend on the setting of the sensitivity pot. If a flame is detected, that output voltage will drop towards ground depending on the strength of the IR detected.
The Digital output on ‘D0‘ is normally LOW. When IR is detected by the sensor, the output goes HIGH. The sensitivity adjustment can be used to set the trip point. LED2 will light when the output goes HIGH.
There is a 4-pin header on the assembly.
1 x 4 Header
These modules are interesting for experimenting with flame detection as part of a fire detector setup. They can also be used to monitor a flame to determine if it has gone out, such as a pilot light. Commercial fire detection systems often also include light flicker detection to help determine if a flame is present since most sources of IR including sunlight can trigger this module, not just a flame.
The module is straight forward to use. Hook up ground and Vcc (3.3 or 5V). A red LED lights when power is applied. There is a red or green LED2 that lights when IR within the sensor range is being detected. If that LED is always on, adjust the sensitivity adjustment potentiometer CCW until the LED goes off. If a match or other flame is then lit and held in front of the sensor, the LED should come on showing that it is being detected. An IR TV remote can also be used to test the operation of the device by pointing it at the sensor and pressing any button.
The simple program below can be used to monitor both the analog and digital outputs of the device to see how it reacts to the presence of a flame.
/* Flame Sensor Module Test Basic code to monitor the outputs of the flame sensor module */ int flameDigitalPin = 7; // Random digital pin for monitoring the digital output int flameAnalogPin = A0; // Random analog pin for monitoring the analog output int digitalValue = 0; // Variable to hold the returned digital value int analogValue = 0; // Variable to hold the returned analog value //=============================================================================== // Initialization //=============================================================================== void setup() { pinMode(flameDigitalPin, INPUT); // Set pin as Input pinMode(flameAnalogPin, INPUT); // Set pin as Input Serial.begin (9600); // Set output window comm rate } //=============================================================================== // Main //=============================================================================== void loop() { digitalValue = digitalRead (flameDigitalPin); analogValue = analogRead (flameAnalogPin); Serial.print ("Digital: "); Serial.println (digitalValue); Serial.print ("Analog: "); Serial.println (analogValue); delay(1000); }
Notes:
Maximum Ratings | ||
Vcc | 3.3 – 5V | |
IMax | Maximum Current Draw | < 7mA |
Operating Ratings | ||
Wavelength | 700-1100nm (typical) | |
Dimensions | L x W (PCB) | 36 x 15mm (1.4x 0.6″) |
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!