現貨供應最新開發模組

Grove - Flame Sensor 火焰傳感器

  • Grove 接口
  • 高感光性
  • 快速反應時間
  • 便於使用
  • 敏感性可調節

代號
grove-flame-sensor

SKU 即原廠標號
101020049

定價
230
特價
230 (含營業稅)

有庫存

原廠連結:http://www.seeedstudio.com/wiki/Grove_-_Flame_Sensor_传感器

產品介紹

Grove火焰傳感器可用來探測火源或者其他波長在760nm-1100nm之間的其它光源。其基於高速、高靈敏度的NPN硅光電晶體管YG1006。黑色環氧樹脂的應用使傳感器對紅外輻射非常敏感。在消防機器人比賽中,這個傳感器起到非常重要的作用,它可被當做尋找火源的眼睛。
Model: SEN05082P
Flame Sensor 01.jpg

產品特性

  • Grove 接口
  • 高感光性
  • 快速反應時間
  • 便於使用
  • 敏感性可調節

產品規格

項目最小值典型值最大值單位
電壓4.755.05.30VDC
電流/20/mA
頻譜帶寬範圍7609401100nm
檢測範圍0~1m
響應時間15μS
工作溫度-25~85

產品使用

此模塊主要用於檢測紅外光。通過比較器輸出數字信號0或1,當檢測到紅外光時輸出值為0。用精密電位計可以調節檢測的靈敏度。 我們來實現輸出值為0點亮發光二極管的實驗吧!

  • 1.用四引腳Grove接線將模塊連接到Grove基礎擴展板的D3引腳吧。
  • 2.將Grove基礎擴展板插到Arduino板上。
  • 3.用USB線將Arduino連接到電腦。
  • 4.將下面的代碼複製粘貼到一個新建的Arduino文件並載入到Arduino中。如果不知道怎樣載入,請您點擊這裡。
/******************************************************************************/
 
#define SENSOR 3 //connect SENSOR to digital pin3
#define LED 2//connect Grove - LED to pin2

void setup() 
{                
    pinsInit();
}
void loop() 
{
  if(isFlameDetected())
      turnOnLED();
  else turnOffLED();
}
/********************************/
void pinsInit()
{
    pinMode(FLAME_SENSOR, INPUT);
    pinMode(LED,OUTPUT);
    digitalWrite(LED,LOW);
}
void turnOnLED()
{
    digitalWrite(LED,HIGH);
}
void turnOffLED()
{
    digitalWrite(LED,LOW);
}
boolean isFlameDetected()
{
    if(digitalRead(FLAME_SENSOR))
        return false;
    else return true;
}
  • 5.當有紅外光時發光二極管將會亮。請用它來設計您的產品吧。

參考

這個傳感器可檢測波長在760nm-1100nm之間的光源。下圖顯示了光譜感光度。
Spectral Sensitive.jpg

資源

技術支持

如果您有疑問或其他更好的設計思路,請至論壇心願欄討論。

資料來源:https://www.seeedstudio.com/Grove---Flame-Sensor-p-1450.html

Description

The Grove - Flame Sensor can be used to detect fire source or other light sources of the wavelength in the range of 760nm - 1100 nm. It is based on the YG1006 sensor which is a high speed and high sensitive NPN silicon phototransistor. Due to its black epoxy, the sensor is sensitive to infrared radiation. In fire fighting robot game, The sensor plays a very important role, it can be used as a robot eyes to find the fire source.
 
Features
  • Grove Interface


  • High Photo Sensitivity


  • Fast Response Time


  • Easy to use


  • Sensitivity can adjustable


For all Grove users (especially beginners), we provide you guidance PDF documents. Please download and read through Preface - Getting Started and Introduction to Grove before your using of the product.


 

Technical Details

Dimensions 130mm x 80mm x 12mm
Weight G.W 9g    
Battery Exclude

Part List

Grove - Flame Sensor 1
Grove - cable 1

Line share