夏普SHARP灰尘颗粒传感器GP2Y1010AU0F
- 格式:pdf
- 大小:154.14 KB
- 文档页数:9
Dust Sensor灰尘传感器用户手册1.特性和原理本模块是以夏普GP2Y1010AU0F为核心的灰尘传感器。
传感器内部的红外二极管,可以输出一个跟灰尘浓度成线性关系的电压值。
通过该电压值即可计算出空气中的灰尘和烟尘含量。
测量对象:直径大于0.8μm灰尘颗粒有效量程:500μg/m3输出类型:电压模拟量工作电压: 2.5V~5.5V产品尺寸:63.2mm×41.3mm固定孔尺寸: 2.0mm通气孔尺寸:9.0mm1.1.传感器输出特性传感器输出电压与灰尘浓度关系在0到0.5mg/m3范围内成线性关系,如下图所示:图1: 传感器输出特性曲线1.2.传感器控制原理1)通过设置模块I LED引脚为高电平,从而打开传感器内部红外二极管。
2)等待0.28ms,外部控制器采样模块A OUT引脚的电压值。
这是因为传感器内部红外二极管在开启之后0.28ms,输出波形才达到稳定。
如下图所示:图2: I LED与红外二极管输出波形关系3)采样持续0.04ms之后,再设置I LED引脚为低电平,从而关闭内部红外二极管。
4)根据电压与浓度关系即可计算出当前空气中的灰尘浓度,具体实现细节请参考Demo程序。
注:输出的电压经过了分压处理(查看原理图),要将测得的电源放大11倍才是实际传感器输出的电压。
1.3.主要用途检测空气中灰尘浓度,用于空气净化器、空气质量监测仪、PM2.5检测仪等。
2.操作和现象2.1.传感器接口说明表1: 传感器接口说明2.2.连接开发板使用下面章节以四款不同类型的开发板为例,描述具体操作步骤及实验现象。
2.2.1.Open103R(主控芯片STM32F103R)1)编译下载Demo程序。
2)3)表2: 传感器和Open103R引脚对应关系4)开发板上电,可看到串口助手不断显示当前灰尘浓度值,当有大量灰尘颗粒进入通气孔时,数据发生明显变化,实验现象见附录。
2.2.2.Open407Z-C(主控芯片STM32F407Z)1)编译下载Demo程序。
使用夏普GP2Y1010AU0F灰尘传感器检测空气质量夏普灰尘传感器价格较便宜,能检测出室内空气中的灰尘和烟尘含量.检测原理其原理如下图,传感器中心有个洞可以让空气自由流过,定向发射LED光,通过检测经过空气中灰尘折射过后的光线来判断灰尘的含量。
电路图因为数据是通过pin 5的电压模拟信号输出的,而树莓派的引脚不支持模拟信号直接读取(需要增加数模转换芯片),所以先用Arduino来实验。
Arduino 代码根据电路图,把Arduino和传感器连接起来:1.Sharp pin 1 (V-LED) => 5V 串联1个150欧姆的电阻(最好在电阻一侧和GND之间再串联一个220uf的电容)2.Sharp pin 2 (LED-GND) => GND3.Sharp pin 3 (LED) => Arduino PIN 2 (开关LED)4.Sharp pin 4 (S-GND) => GND5.Sharp pin 5 (Vo) => Arduino A0 pin (空气质量数据通过电压模拟信号输出)6.Sharp pin 6 (Vcc) => 5V1./*2.Interface to Sharp GP2Y1010AU0F Particle Sensor3.Program by Christopher Nafis4.Written April 20125.6.7.8.9.Sharp pin 1 (V-LED) => 5V (connected to 150ohm resister)10.Sharp pin 2 (LED-GND) => Arduino GND pin11.Sharp pin 3 (LED) => Arduino pin 212.Sharp pin 4 (S-GND) => Arduino GND pin13.Sharp pin 5 (Vo) => Arduino A0 pin14.Sharp pin 6 (Vcc) => 5V15.*/16.#include<SPI.h>17.#include<stdlib.h>18.19.int dustPin=0;20.int ledPower=2;21.int delayTime=280;22.int delayTime2=40;23.float offTime=9680;24.25.int dustVal=0;26.int i=0;27.float ppm=0;28.char s[32];29.float voltage=0;30.float dustdensity=0;31.float ppmpercf=0;32.33.void setup(){34.Serial.begin(9600);35. pinMode(ledPower,OUTPUT);36.37.// give the ethernet module time to boot up:38. delay(1000);39.40. i=0;41. ppm=0;42.}43.44.void loop(){45. i=i+1;46. digitalWrite(ledPower,LOW);// power on the LED47. delayMicroseconds(delayTime);48. dustVal=analogRead(dustPin);// read the dust value49. ppm=ppm+dustVal;50. delayMicroseconds(delayTime2);51. digitalWrite(ledPower,HIGH);// turn the LED off52. delayMicroseconds(offTime);53.54. voltage=ppm/i*0.0049;55. dustdensity=0.17*voltage-0.1;56. ppmpercf=(voltage-0.0256)*120000;57.if(ppmpercf<0)58. ppmpercf=0;59.if(dustdensity<0)60. dustdensity=0;61.if(dustdensity>0.5)62. dustdensity=0.5;63.String dataString="";64. dataString+=dtostrf(voltage,9,4,s);65. dataString+=",";66. dataString+=dtostrf(dustdensity,5,2,s);67. dataString+=",";68. dataString+=dtostrf(ppmpercf,8,0,s);69. i=0;70. ppm=0;71.Serial.println(dataString);72. delay(1000);73.}把传感器和Ardiuno连接好后,可以连续打印出传感器的输出电压值。
GP2Y1010AU0FGP2Y1010AU0FCompact Optical Dust Sensor■Description■Features■Compliance■Applications1. Detecting of dust in the air.2. Example: Air purifier, Air conditioner, Air monitor1. Compliant with RoHS directive (2002/95/EC)1. Compact, thin package (46.0 × 30.0 × 17.6 mm)2. Low consumption current (Icc: MAX. 20 mA)3. The presence of dust can be detected by the photometry of only one pulse4. Enable to distinguish smoke from house dust5. Lead-free and RoHS directive compliantNotice The content of data sheet is subject to change without prior notice.In the absence of confirmation by device specification sheets, SHARP takes no responsibility for any defects that may occur in equipment using any SHARP devices shown in catalogs, data books, etc. Contact SHARP in order to obtain the latest device specification sheets before using any SHARP device.GP2Y1010AU0F is a dust sensor by optical sensing system.An infrared emitting diode (IRED) and an phototran-sistor are diagonally arranged into this device.It detects the reflected light of dust in air.Especially, it is effective to detect very fine particle like the cigarette smoke.In addition it can distinguish smoke from house dust by pulse pattern of output voltage.■Internal schematic■Outline Dimensions(Unit : mm)V-LEDLED-GND LED S-GND V O V CC123456132654Marking informationDate code (2 digit)1st digit2nd digitYear of production Month of productionA.D.Mark Month Mark2000011200112220022332003344200445520055662006677200778820088992009910X2010011Y::12Z repeats in a 10 year cycleCountry of originPhilippines■■ Absolute Maximum Ratings*1 Open drain drive inputParameter Symbol Rating Unit Supply voltageCC V Operating temperature T T opr −10 to +65°C −0.3 to V CC V −0.3 to +7Input terminal voltage V V LED *1Soldering temperaturesol−20 to +80°CElectro-optical Characteristics■ Recommended input condition for LED input terminalParameter ConditionsSymbol K V OC I LED *1 *2 *3*2 *3*2 *3R L =4.7k Ω*2LED terminal voltage = 0*2R L =∞MIN.0.3503.4−−TYP.0.50.9−1110MAX.1.50.65−2020Unit V/(0.1mg/m 3)V V mA mASensitivityOutput voltage at no dust V OH Output voltage range LED terminal current I CCConsumption current*1 Sensitivity is specified by the amount of output voltage change when dust density changes by 0.1 mg/m 3.And the dust density for detection is a value of the density of cigarette (MILD SEVEN®) smoke measured by the digital dust monitor (P-5L2: manufactured by SHIBATA SCIENTIFIC TECHNOLOGY LTD.).*2 Input condition is shown in Fig. 1*3 Output sampling timing is shown in Fig. 2(T a =25°C)(T a =25°C, V CC =5V)ParameterPulse Cycle Pulse WidthOperating Supply voltageSymbol T P W V CCValue 10 ± 10.32 ± 0.025 ± 0.5Unit ms ms VFig. 1 Input Condition for LED Input TerminalFig. 2 Sampling Timing of Output PulseI LEDRemarks : Please be aware that all data in the graph are just for reference and are not for guarantee.432100.20.40.60.8O u t p u t v o l t a g e (V )Dust density (mg/m 3)Fig. 3 Output Voltage vs. Dust Density●Notes1 Connection of case and GNDCase material use conductive resin as cover case {printed model No.} and metal {test terminal side}as bottom cover. The metal case connects with GND in sensor.2 CleaningPlease don’t do cleaning, because there is a case that this device is not satisfied with its characteristics by cleaning.3 Pulse input rangePlease subject to recommendation as regard input condition for LED in order to keep reliability.4 Dust adhesionThere is a case that this product does not detect the dust density correctly, since the dust adhered to the inside of the dust through hole may project into the detecting space which consist of emitter anddetector light axis. Please take the structure and mechanism of the equipment into consideration toavoid the influence of adhered dust. And when the dust is adhered, please consider the maintenance such as vacuuming or blowing off the dust by air.In addition, please pay attention to structure and placing location of the application to avoid anyadhesive particle like oil, etc. to gets into the device. If it sticks to optical part, malfunction may occur.5 Light outputIn circuit designing, make allowance for the degradation of the light emitting diode output that resultsfrom long continuous operation. (50% degradation/5 years)6 Sensitivity adjustment VRVR for sensitivity adjustment is set up at shipping from sharp. Please do not touch the VR orElectro-optical characteristics specified on the specification will be invalid.7 ResolutionPlease do not disassemble the device such as removing tapping screw and so on. Even if the device is reassembled, it may not satisfy the specification.8 Application to fire alarmPlease do not use this device for a fire alarm application. When using this device to application other than air purifying and equipment with air purifying function, please inform us before usage.9 Noise influenceIf the sensor is located close to noise generator (ex. Electric dust collector, etc. ), the sensor outputmay be affected by leaded noise. On top of that noise from power supply line also may affect thesensor output. When desinging the system, please consider the effect from noise.10 Vibration influenceThe sensor may change its value under mechanical oscillation. Before usage, please make surethat the device works normally in the application.11 Incident light influenceThere is a case that the sensor output may be affected when outer-light comes through dust through hole on printed side. In order to avoid any influence from outer-light, please locate the printed sideof sensor facing to inside of the application.12 When inside of the sensor is moisturized, this product does not keep its proper function. Pleasedesign the application so that moisturization of the sensor does not happen.Sheet No.: E4-A01501EN●Presence of ODC etc.This product shall not contain the following materials.And they are not used in the production process for this product.Regulation substances : CFCs, Halon, Carbon tetrachloride, 1.1.1-Trichloroethane (Methylchloroform) Specific brominated flame retardants such as the PBB and PBDE are not used in this product at all.This product shall not contain the following materials banned in the RoHS Directive (2002/95/EC).• Lead, Mercury, Cadmium, Hexavalent chromium, Polybrominated biphenyls (PBB),Polybrominated diphenyl ethers (PBDE).Packing SpecificationPACKING METHOD1. Each tray holds 50 pieces. Packing methods are shown in (A).2. Each box holds 5 trays. Pads are added to top (B).3. The box is sealed with packing tape. (C) shows the location of the Model number, Quantity, and Inspection date.4. Weight is approximately5.6 kg■Important Notices· The circuit application examples in this publication are provided to explain representative applications of SHARP devices and are not intended to guarantee any circuit design or license any intellectual property rights. SHARP takes no responsibility for any problems related to any intellectual property right of a third party resulting from the use of SHARP's devices.· Contact SHARP in order to obtain the latest device specification sheets before using any SHARP device. SHARP reserves the right to make changes in the spec- ifications, characteristics, data, materials, structure, and other contents described herein at any time without no-tice in order to improve design or reliability. Manufactur-ing locations are also subject to change without notice.· Observe the following points when using any devices in this publication. SHARP takes no responsibility for damage caused by improper use of the devices which does not meet the conditions and absolute maximum ratings to be used specified in the relevant specification sheet nor meet the following conditions:(i) The devices in this publication are designed for use in general electronic equipment designs such as:--- Personal computers--- Office automation equipment--- Telecommunication equipment [terminal]--- Test and measurement equipment--- Industrial control--- Audio visual equipment--- Consumer electronics(ii) Measures such as fail-safe function and redundant design should be taken to ensure reliability and safety when SHARP devices are used for or in connection with equipment that requires higher reliability such as:--- Transportation control and safety equipment (i.e., aircraft, trains, automobiles, etc. )--- Traffic signals--- Gas leakage sensor breakers--- Alarm equipment--- Various safety devices, etc.(iii) SHARP devices shall not be used for or in connec-tion with equipment that requires an extremely high level of reliability and safety such as:--- Space applications--- Telecommunication equipment [trunk lines]--- Nuclear power control equipment--- Medical and other life support equipment (e.g., scuba).· If the SHARP devices listed in this publication fall within the scope of strategic products described in the Foreign Exchange and Foreign Trade Law of Japan, it is necessary to obtain approval to export such SHARP devices.· This publication is the proprietary product of SHARP and is copyrighted, with all rights reserved. Under the copyright laws, no part of this publication may be re-produced or transmitted in any form or by any means, electronic or mechanical, for any purpose, in whole or in part, without the express written permission of SHARP. Express written permission is also required before any use of this publication may be made by a third party.· Contact and consult with a SHARP representative if there are any questions about the contents of this publi-cation.Sheet No.: E4-A01501EN。
夏普灰尘传感器原理夏普灰尘传感器是一种常用于空气质量监测的传感器,可以通过测量空气中的灰尘浓度,判断空气的污染程度。
它是基于光学原理工作的,通过测量光的散射来间接测量空气中的灰尘颗粒数量。
夏普灰尘传感器的原理是利用散射光的特性来测量灰尘浓度。
当光线照射到灰尘粒子上时,由于灰尘粒子的形状和大小不同,光线会发生不同程度的散射。
传感器中的激光二极管发射出一束单色激光,该激光经过准直透镜和散射板,形成一束平行光。
当光线遇到空气中的灰尘粒子时,部分光线会被散射到散射板上的光敏电阻。
散射到散射板上的光线,会被光敏电阻转化为电信号。
夏普灰尘传感器采用了光敏电阻的电阻值与光强成反比的原理。
当光敏电阻接收到较少的光线时,电阻值较高,电流较小;当光敏电阻接收到较多的光线时,电阻值较低,电流较大。
通过测量光敏电阻的电流大小,就可以得到空气中灰尘的浓度。
为了避免其他因素干扰,夏普灰尘传感器采用了光路双光子法。
传感器中设置两个光敏二极管,其中一个光敏二极管用来检测散射光的强度,另一个光敏二极管用来检测透射光的强度。
透射光是指光线通过空气中没有灰尘的部分,达到另一侧光敏二极管上。
通过对比散射光和透射光的强度差异,可以消除其他因素对灰尘浓度测量的影响,提高测量的准确性。
夏普灰尘传感器还通过在光路中加入一个专用滤光片来选择测量特定粒径的灰尘颗粒。
这个滤光片只允许特定波长的光线通过,其他波长的光线则会被滤除。
通过选择适当的滤光片,可以使传感器只测量某一特定粒径的灰尘颗粒,排除其他尺寸颗粒的干扰。
综上所述,夏普灰尘传感器是通过测量光线的散射来间接测量空气中的灰尘浓度。
传感器采用了散射光和透射光之间的差异,以及滤光片的选择,来消除其他因素对测量结果的影响。
这种原理使得夏普灰尘传感器在空气质量监测领域具有较高的准确性和可靠性。
pm2.5传感器四种工作原理及进口品牌介绍工采网小编从原理出发介绍当下pm2.5传感器应用普遍,进口品牌较多的综合评测、方便集成采用选型原理介绍:1,光散射法光散射原理有LED光(普通光学),激光等原理,传感器可以有效的探测出粒径约0.5um 以上颗粒,至此光散射法听着可靠性相对较低,然而又由于光散射原理探头相对便宜,探头易安装,使用,做为监测应用相对合适,相对其它原理有较多的优势,且应用商选择质量较好,并相对稳定,灵敏的探头,数据可靠性大大增加!目前市面上光散射法应用成熟普遍,是pm2.5监测的较好选择!2、重量法我国目前对大气颗粒物的测定主要采用重量法。
其原理是分别通过一定切割特征的采样器,以恒速抽取定量体积空气,使环境空气中的PM2.5和PM10被截留在已知质量的滤膜上,根据采样前后滤膜的质量差和采样体积,计算出PM2.5和PM10的浓度。
必须注意的是,计量颗粒物的单位ug/m3 中分母的体积应该是标准状况下(0℃、101.3kPa)的体积,对实测温度、压力下的体积均应换算成标准状况下的体积。
环境空气监测中采样环境及采样频率要按照HJ.T194的要求执行。
PM10连续自动监测仪的采样切割装置一般设计成旋风式,它在规定的流量下,对空气中10um粒径的颗粒物具有50%的采集效率、以下为其技术性能指标表。
3、微量振荡天平法TEOM微量振荡天平法是在质量传感器内使用一个振荡空心锥形管,在其振荡端安装可更换的滤膜,振荡频率取决于锥形管特征和其质量。
当采样气流通过滤膜,其中的颗粒物沉积在滤膜上,滤膜的质量变化导致振荡频率的变化,通过振荡频率变化计算出沉积在滤膜上颗粒物的质量,再根据流量、现场环境温度和气压计算出该时段颗粒物标志的质量浓度。
微量振荡天平法颗粒物监测仪由PM10采样头、PM2.5切割器、滤膜动态测量系统、采样泵和仪器主机组成。
流量为1m3/h环境空气样品经过PM10采样头和PM2.5切割器后,成为符合技术要求的颗粒物样品气体。
灰尘传感器GP2Y1010AU
型号:GP2Y1010AU
主要特点:
日本夏普公司灰尘传感器GP2Y1010AU,体积小巧,灵敏度高,可以用来测量0.8微米以上的微小粒子,可用于室内环境中烟气、粉尘、花粉等浓度的检测。
此款产品不但可以检测出单位体积粒子的绝对个数,而且内置气流发生器,可以自行吸入外部空气。
灰尘传感器GP2Y1010AU安装保养方便,使用寿命长,精度高,稳定性好。
应用领域:
1、空气净化器和空气清新机;
2、空调;
3、空气质量监控仪;
4、空调等相关产品。
主要参数:
灵敏度:0.5V/(0.1mg/m3)
输出电压:0.9V(TYP)
消耗电流:11mA
工作温度:-10~65℃
存储温度:-20~80℃。
开发控制板组成,
GP2Y1010AU0FC01模块使用说明书
一, 简介
1,该模块由夏普粉尘传感器GP2Y1010AU0F 和模块型号是:GP2Y1010AU0FC01,模块经过精确标定后,检测空气中的粉尘浓度,精度高,一致性强。
2,传感器智能校准:当灰尘附着于传感器或传感器老化时,系统会自动进行浓度参数校准,确保测量的准确性。
3,提供多种浓度值输出接口:模拟电压输出:灰尘浓度越高,输出模拟电压越高。
数字串口输出;供其它平台MCU 直接读取。
二,接线图
第一脚:5V 工作电压输入端
第二脚:串口数据输出
第三脚:串口数据输入
第四脚:灰尘浓度模拟电压输出
第五脚:不用连接
第六脚:工作电压地
三,技术参数
四,通信协议命令格式
1,模块读取除尘机工作状态:
传感器发送命令格式:05FEF603
除尘机收到上述命令后返回工作状态
①除尘机处于开机状态:返回数据格式06FEF103
②除尘机处于关机状态:返回数据格式06FEF003
2,除尘机读取灰尘浓度值:
除尘机发送命令格式:05FEF503
模块收到上述指令后返回浓度值。
返回数据格式:06ABCD03
浓度计数方法:浓度值(十六进制)=0XABCD(ug/m3)。
例如AB=01,CD=0X23:则
浓度(十六进制)=0X0123(ug/m3)
浓度(十进制)=291(ug/m3)。
由项目实例从零开始学arduino系列(一)项目:利用arduino自制pm2.5检测仪目的:通过自制pm2.5检测仪过程掌握arduino 控制板接口电路,1602液晶显示屏连接arduino 控制板显示技术,相关arduino编程语言,灰尘传感器连接arduino控制板方法。
知识点:1602液晶显示,灰尘传感器接法,基础的arduino编程语言。
白话文式讲解一、硬件连接(图在详细讲解处)(一)粉尘传感器连接nano板SHARP GP2Y1010AU0F型灰尘/粉尘传感器的红色线为6号线,向左依次为5,4,3,2,1号线。
粉尘传感器6号线接Arduinonano板的5V端。
粉尘传感器5号线接Arduinonano板的A0端。
粉尘传感器4号线接Arduinonano板的GND端。
粉尘传感器3号线接Arduinonano板的D2端。
粉尘传感器2号线接Arduinonano板的GND端。
粉尘传感器1号线接150欧姆电阻和220uF的电解电容正极,150欧姆电阻的另一端接Arduinonano板的5V端。
220uF的电解电容负极接Arduinonano板的GND端。
(二)1602液晶屏连接nano板1602液晶屏上标有数字针脚,一般是16针。
我们用到了12个针脚。
液晶屏第16针连接Arduinonano板的GND端。
液晶屏第15针连接Arduinonano板的5V端。
液晶屏第14针连接Arduinonano板的D6端。
液晶屏第13针连接Arduinonano板的D7端。
液晶屏第12针连接Arduinonano板的D8端。
液晶屏第11针连接Arduinonano板的D9端。
液晶屏第1针连接Arduinonano板的GND端。
液晶屏第2针连接Arduinonano板的5V端。
液晶屏第3针先接1k电阻,电阻另一端连接Arduinonano板的D6端。
液晶屏第4针连接Arduinonano板的D12端。
液晶屏第5针连接Arduinonano板的D11端。
修改记录表 Model no.
日期Ref.
页码内容备注
确认&批准
批准核对核对制定
2014.07.01 - 制定
参考特性数据,测试条件参见“※1”
输
出
电
压
(
V
)
埃濃度(mg/㎥)
3.1 产品外观
GP1051AU0F
公司简介
深圳盛世物联科技有限公司(Shenzhen Sense IoT Technology Co.,Ltd)专业代理推广国际知名品牌环境传感器及半导体元器件产品,是一家由多位环境科学领域的资深人士联合创建的集技术开发与代理分销为一体的高新技术企业。
面向物联传感应用,公司长期致力于室内环境空气品质及有害气体监控产品的技术开发,并提供相关配套的传感器、IC、模块、设备以及行业应用方案支持,技术应用涉及温湿度传感、压力传感、气体传感、加速度传感等监测领域,产品涵盖Freescale、TI、Sharp、GE(Amphenol)安费诺、Silicon Labs、PLX、Micron、Sensirion、SenseAir、ST、City、Honeywell、Measurement(Humirel)精量等国际知名品牌,服务客户遍及石油化工、电力电子、汽车智能、空气净化、楼宇暖通、医药监测、食品安全、现代农业等众多终端。
盛世物联拥有一支经验丰富的专业技术/营销团队,以快速响应您的需求,并一如既往的为您提供最先进的产品技术、最优化的解决方案、最快捷的物流服务和最具竞争力的产品价格服务。
盛世追梦,物联你我!感谢亲一直以来的大力支持,祝商祺!。
GP2Y1010AU0F11807-0430-980© SHARP CorporationGP2Y1010AU0FCompact Optical Dust Sensor■Description■Features■Compliance■Applications1. Detecting of dust in the air.2. Example: Air purifier, Air conditioner, Air monitor1. Compliant with RoHS directive (2002/95/EC)1. Compact, thin package (46.0 × 30.0 × 17.6 mm)2. Low consumption current (Icc: MAX. 20 mA)3. The presence of dust can be detected by the photometry of only one pulse4. Enable to distinguish smoke from house dust5. Lead-free and RoHS directive compliantNotice The content of data sheet is subject to change without prior notice.In the absence of confirmation by device specification sheets, SHARP takes no responsibility for any defects that may occur in equipment using any SHARP devices shown in catalogs, data books, etc. Contact SHARP in order to obtain the latest device specification sheets before using any SHARP device.GP2Y1010AU0F is a dust sensor by optical sensing system.An infrared emitting diode (IRED) and an phototran-sistor are diagonally arranged into this device.It detects the reflected light of dust in air.Especially, it is effective to detect very fine particle like the cigarette smoke.In addition it can distinguish smoke from house dustby pulse pattern of output voltage.■Internal schematic■Outline Dimensions(Unit : mm)V-LEDLED-GND LED S-GND V O V CC123456132654Marking informationDate code (2 digit)1st digit2nd digitYear of production Month of productionA.D.Mark Month Mark2000011200112220022332003344200445520055662006677200778820088992009910X2010011Y::12Z repeats in a 10 year cycleCountry of originPhilippines■■ Absolute Maximum Ratings*1 Open drain drive inputParameter Symbol Rating Unit Supply voltageCC V Operating temperature T T opr −10 to +65°C −0.3 to V CC V −0.3 to +7Input terminal voltage V V LED *1Soldering temperaturesol−20 to +80°CElectro-optical Characteristics■ Recommended input condition for LED input terminalParameter ConditionsSymbol K V OC I LED *1 *2 *3*2 *3*2 *3R L =4.7k Ω*2LED terminal voltage = 0*2R L =∞MIN.0.3503.4−−TYP.0.50.9−1110MAX.1.50.65−2020Unit V/(0.1mg/m 3)V V mA mASensitivityOutput voltage at no dust V OH Output voltage range LED terminal current I CCConsumption current*1 Sensitivity is specified by the amount of output voltage change when dust density changes by 0.1 mg/m 3.And the dust density for detection is a value of the density of cigarette (MILD SEVEN®) smoke measured by the digital dust monitor (P-5L2: manufactured by SHIBATA SCIENTIFIC TECHNOLOGY LTD.).*2 Input condition is shown in Fig. 1*3 Output sampling timing is shown in Fig. 2(T a =25°C)(T a =25°C, V CC =5V)ParameterPulse Cycle Pulse WidthOperating Supply voltageSymbol T P W V CCValue 10 ± 10.32 ± 0.025 ± 0.5Unit ms ms VFig. 1 Input Condition for LED Input TerminalFig. 2 Sampling Timing of Output PulseI LEDRemarks : Please be aware that all data in the graph are just for reference and are not for guarantee.432100.20.40.60.8O u t p u t v o l t a g e (V )Dust density (mg/m 3)Fig. 3 Output Voltage vs. Dust Density●Notes1 Connection of case and GNDCase material use conductive resin as cover case {printed model No.} and metal {test terminal side}as bottom cover. The metal case connects with GND in sensor.2 CleaningPlease don’t do cleaning, because there is a case that this device is not satisfied with its characteristics by cleaning.3 Pulse input rangePlease subject to recommendation as regard input condition for LED in order to keep reliability.4 Dust adhesionThere is a case that this product does not detect the dust density correctly, since the dust adhered to the inside of the dust through hole may project into the detecting space which consist of emitter anddetector light axis. Please take the structure and mechanism of the equipment into consideration toavoid the influence of adhered dust. And when the dust is adhered, please consider the maintenance such as vacuuming or blowing off the dust by air.In addition, please pay attention to structure and placing location of the application to avoid anyadhesive particle like oil, etc. to gets into the device. If it sticks to optical part, malfunction may occur.5 Light outputIn circuit designing, make allowance for the degradation of the light emitting diode output that resultsfrom long continuous operation. (50% degradation/5 years)6 Sensitivity adjustment VRVR for sensitivity adjustment is set up at shipping from sharp. Please do not touch the VR orElectro-optical characteristics specified on the specification will be invalid.7 ResolutionPlease do not disassemble the device such as removing tapping screw and so on. Even if the device is reassembled, it may not satisfy the specification.8 Application to fire alarmPlease do not use this device for a fire alarm application. When using this device to application other than air purifying and equipment with air purifying function, please inform us before usage.9 Noise influenceIf the sensor is located close to noise generator (ex. Electric dust collector, etc. ), the sensor outputmay be affected by leaded noise. On top of that noise from power supply line also may affect thesensor output. When desinging the system, please consider the effect from noise.10 Vibration influenceThe sensor may change its value under mechanical oscillation. Before usage, please make surethat the device works normally in the application.11 Incident light influenceThere is a case that the sensor output may be affected when outer-light comes through dust through hole on printed side. In order to avoid any influence from outer-light, please locate the printed sideof sensor facing to inside of the application.12 When inside of the sensor is moisturized, this product does not keep its proper function. Pleasedesign the application so that moisturization of the sensor does not happen.Sheet No.: E4-A01501EN●Presence of ODC etc.This product shall not contain the following materials.And they are not used in the production process for this product.Regulation substances : CFCs, Halon, Carbon tetrachloride, 1.1.1-Trichloroethane (Methylchloroform) Specific brominated flame retardants such as the PBB and PBDE are not used in this product at all.This product shall not contain the following materials banned in the RoHS Directive (2002/95/EC).• Lead, Mercury, Cadmium, Hexavalent chromium, Polybrominated biphenyls (PBB),Polybrominated diphenyl ethers (PBDE).Packing SpecificationPACKING METHOD1. Each tray holds 50 pieces. Packing methods are shown in (A).2. Each box holds 5 trays. Pads are added to top (B).3. The box is sealed with packing tape. (C) shows the location of the Model number, Quantity, and Inspection date.4. Weight is approximately5.6 kg■Important Notices· The circuit application examples in this publication are provided to explain representative applications of SHARP devices and are not intended to guarantee any circuit design or license any intellectual property rights. SHARP takes no responsibility for any problems related to any intellectual property right of a third party resulting from the use of SHARP's devices.· Contact SHARP in order to obtain the latest device specification sheets before using any SHARP device. SHARP reserves the right to make changes in the spec- ifications, characteristics, data, materials, structure, and other contents described herein at any time without no-tice in order to improve design or reliability. Manufactur-ing locations are also subject to change without notice.· Observe the following points when using any devices in this publication. SHARP takes no responsibility for damage caused by improper use of the devices which does not meet the conditions and absolute maximum ratings to be used specified in the relevant specification sheet nor meet the following conditions:(i) The devices in this publication are designed for use in general electronic equipment designs such as:--- Personal computers--- Office automation equipment--- Telecommunication equipment [terminal]--- Test and measurement equipment--- Industrial control--- Audio visual equipment--- Consumer electronics(ii) Measures such as fail-safe function and redundant design should be taken to ensure reliability and safety when SHARP devices are used for or in connection with equipment that requires higher reliability such as:--- Transportation control and safety equipment (i.e., aircraft, trains, automobiles, etc. )--- Traffic signals--- Gas leakage sensor breakers--- Alarm equipment--- Various safety devices, etc.(iii) SHARP devices shall not be used for or in connec-tion with equipment that requires an extremely high level of reliability and safety such as:--- Space applications--- Telecommunication equipment [trunk lines]--- Nuclear power control equipment--- Medical and other life support equipment (e.g., scuba).· If the SHARP devices listed in this publication fall within the scope of strategic products described in the Foreign Exchange and Foreign Trade Law of Japan, it is necessary to obtain approval to export such SHARP devices.· This publication is the proprietary product of SHARP and is copyrighted, with all rights reserved. Under the copyright laws, no part of this publication may be re-produced or transmitted in any form or by any means, electronic or mechanical, for any purpose, in whole or in part, without the express written permission of SHARP. Express written permission is also required before any use of this publication may be made by a third party.· Contact and consult with a SHARP representative if there are any questions about the contents of this publi-cation.。