在这个文章里面,我们在pcDuino上跑通了MQ2 Shield. MQ2 是一种可燃气体,它存在天然气中。
MQ2 shield 的产品链接: http://linksprite.com/wiki/index.php5?title=MQ2_Smoke_Detector_Shield_for_Arduino
为了把MQ2 shield 很方便地插到pcDuino上面,我们还用到 Cudigi T board.
整个实验的设备如:
代码:
/* Sample code for MQ2 Smoke Sensor Shield for pcDuino
05/09/2013
**********************************************/
#include
const int analogInPin =0;
int sensorValue = 0; // value read from the pot
int count1;
void setup() {
pinMode(7, OUTPUT);
}
void loop() {
count1++;
// read the analog in value:
sensorValue = analogRead(analogInPin);
if(count1==3000)
{
count1=0;
printf("sensor=%d\n", sensorValue);
}
}
编译,运行该代码后, 在 靠近MQ2的地方点燃打火机,可以看到,屏幕上传感器的数值发生剧烈变化:
来源:oschina
链接:https://my.oschina.net/u/1174645/blog/142250