• Em promoção!
  • -2,00 €

Sensor de Chama com saída digital

:SEN05043
4,90 €
2,90 € Poupe 2,00 €
preço com IVA incluído

Com este sensor de chama consegue detectar uma chama até 60cm de distância.

Através do potenciómetro consegue defenir a intensidade/distância da chama e acima desse valor a saída é accionada.

Quantidade

DESCRIÇÃO EM PORTUGUÊS BREVEMENTE DISPONÍVEL

Se tiver alguma dúvida neste produto não hesite em contactar-nos.

*Atenção: as imagens são meramente ilustrativas.

Flame Sensor Module

Pre-Assembled Module

A flame sensor module that consists of a flame sensor (IR receiver), resistor, capacitor, potentiometer, and comparator LM393 in an integrated circuit. It can detect infrared light with a wavelength ranging from 700nm to 1000nm.The far-infrared flame probe converts the light detected in the form of infrared light into current changes. Sensitivity is adjusted through the onboard variable resistor with a detection angle of 60 degrees.

Working voltage is between 3.3v and 5.2v DC, with a digital output to indicate the presence of a signal. Sensing is conditioned by an LM393 comparator. 
 

Flame Sensor Module Connection Details


Connecting your Flame Detector to an Arduino

Auduino to Flame Sensor Connections

 

A very simple Arduino Sketch is shown below, and assumes you have an LED connected to Pin 13 to indicate when a flame has been detected.

// Flame Sensor Module
// Henry's Bench

int LED = 13; // Use the onboard Uno LED
int isFlamePin = 7;  // This is our input pin
int isFlame = HIGH;  // HIGH MEANS NO FLAME

void setup() {
  pinMode(LED, OUTPUT);
  pinMode(isFlamePin, INPUT);
  Serial.begin(9600);
  
}

void loop() {
  isFlame = digitalRead(isFlamePin);
  if (isFlame== LOW)
  {
    Serial.println("FLAME, FLAME, FLAME");
    digitalWrite(LED, HIGH);
  }
  else
  {
    Serial.println("no flame");
    digitalWrite(LED, LOW);
  }
}

 

Verify Operation of the Flame Detector Module and Adjust Sensitivity

Open the Serial Monitor on your Arduino program.  Move a flame in and out of the viewing angle of the sensor.  You should see an output that looks something like the picture below.   You should also see the red LED illuminate on your module and you should see also see the module LED connected to pin 13 of your Arduino light up.

SEN05043

Também poderá gostar