当前位置:   article > 正文

Arduino开发之SEN0132 Carbon Monoxide Sensor (MQ7)_mq7传感器arduino代码

mq7传感器arduino代码
环境搭建:
1. Arduino UNO R3开发板,


2. Arduino IDE。
我这里使用的是1.8.5。可以在 https://www.arduino.cc/en/Main/Software下载并安装。
安装好之后,桌面会有如下图标。

示例开发:
1.连接设备。
本例中我们以SEN0132 Carbon Monoxide Sensor(MQ7)并结合DFR0021-R为例,基于Arduino Uno R3和Arduino IDE开发。
DFR0021-R的引脚和Arduino Uno开发板的连接方式如下,
DFR0021-R
SEN0132
Arduino Uno R3
VCC
VCC
3.3V
GND
GND
GND
信号引脚
信号引脚
DFR0021接数字引脚8, SEN0132
接模拟引脚A0
2. 编码。
连接好之后,用数据线连接Arduino开发板和电脑。同时打开Arduino IDE。输入下述代码。
#define inPin A0
#define ledPin 8
#define GAS_RANGE 660

void setup()
{
Serial.begin(9600);
pinMode(ledPin, OUTPUT); // declare LED as output
pinMode(inPin, INPUT); // declare Carbon Monoxide sensor as input
}
void loop()
{
Serial.print("Reading Gas Sensor (MQ7) Value: \n");
uint16_t value = analogRead (inPin);
Serial.println(value, DEC);
Serial.println(" \n");

if (value > GAS_RANGE) // check if the gas value is larger than defined range
{
digitalWrite(ledPin, HIGH); // turn LED ON
Serial.print("LED is On...\n");
}
else
{
digitalWrite(ledPin, LOW); // turn LED OFF
Serial.print("LED is Off...\n");
}
Serial.println();
delay (1000);
}
然后保存文件。
选择Arduino Uno开发板。
编译上传大到开发板。
3.运行。
选择COM口信息,
然后选择端口监视工具,查看程序运行信息。
串口监视信息,
备注:上面的数据就是当前Gas Sensor的值和Red LED 的当前状态(ON表示开,OFF表示关)。此例中,当测到的值大于660时,LED灯就会亮。

整体运行界面:

实际效果图:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/147830
推荐阅读
相关标签
  

闽ICP备14008679号