Arduino UNO R3开发板+MQ-2烟雾浓度传感器+火焰传感器+舵机+无源蜂鸣器+风扇+步进电机+WIFI模块+RGB三色LED灯+SIM900A所构成的室内安全报警模块

该系统模块主要由Arduino UNO R3开发板+MQ-2烟雾浓度传感器+火焰传感器+舵机+无源蜂鸣器+风扇+步进电机+WIFI模块+RGB三色LED灯+SIM900A所组成,MQ-2烟雾浓度传感器达到不同的阈值的时候,LED灯会通过不同的颜色来进行警示。烟雾浓度增大,LED灯依次显示绿、蓝、红,且步进电机会驱动风扇进行不同挡位转速旋转,蜂鸣器会进行警报提示。烟雾浓度超过最大的阈值,或者检测到有火焰产生,红灯亮起,蜂鸣器鸣响,步进电机以最大的转速驱动风扇旋转,SIM900A会给指定用户拨打电话。
因为该模块有WiFi模块,也可以通过连接WiFi通过APP进行控制步进电机的转速驱动,也可以实现手动的控制风扇转速。

一、设备准备

Arduino UNO R3Arduino UNO R3开发板+MQ-2烟雾浓度传感器+舵机+无源蜂鸣器+风扇+步进电机+WIFI模块+RGB三色LED灯+SIM900A所构成。MQ-2烟雾浓度传感器实时检测室内烟雾浓度数值,若超过阈值,风扇进行转动
在这里插入图片描述
WIFI模块
在这里插入图片描述
MQ-2烟雾浓度传感器
在这里插入图片描述
火焰传感器模块
在这里插入图片描述

舵机
在这里插入图片描述
无源蜂鸣器
在这里插入图片描述
风扇
在这里插入图片描述
RGB三色LED灯
在这里插入图片描述

步进电机
在这里插入图片描述
SIM900A
在这里插入图片描述

二、设备连接

烟雾浓度传感器

烟雾浓度传感器Arduino UNO R3
VCC5V
GNDGND
DOP7
AOA0

火焰传感器

火焰传感器Arduino UNO R3
DOP2
GNDGND
VCC5V

无源蜂鸣器

无源蜂鸣器Arduino UNO R3
GNDGND
I/OP8
VCC5V

三色LED灯

三色LED灯Arduino UNO R3
RP11
GP12
BP13
GNDGND

步进电机

步进电机Arduino UNO R3
IN3P9
IN4P4
+5V
-GND

风扇

风扇步进电机
红线B灯处
黑线C灯处

WIFI模块(局域模式)

WIFI模块Arduino UNO R3
RXTX
TXRX
GNDGND
5V5V

SIM900A模块

SIM900AArduino UNO R3
5VRTX
5VTRX
GNDGND
VCC55V
GNDGND

舵机模块

舵机Arduino UNO R3
黄线P6
灰线GND
红线5V

三、配置网络

将代码下载到Arduino UNO R3开发板上
WIFI模块需要调节到局域模式,此时打开手机wifi热点,即可检测到WiFi模块所组成的网络,在这里插入图片描述,进行连接。
APP下载路径,打开下载安装好的手机APP
在这里插入图片描述
之后,点击右上角的连接在这里插入图片描述
连接成功之后,即可点击 开锁(49)、加速、减速、蜂鸣器开(50)、蜂鸣器关(51)、一档、二档、三档 可以对舵机、蜂鸣器以及风扇进行控制。

四、完整代码

/******************************************************* connection:* MQ-2 gas sensor            Uno R3* D0                            7* A0                            A0* GND                           GND* VCC                            5V* * * Dual-color LED    Arduin Uno R3* R                  11* G                  12* B                  13* GND                GND* * * buzzerPin                      8* GND                           GND* VCC                            5V* * * motorIn1 = 9;* motorIn2 = 10;* *******************************************************/
#include <Servo.h>  //Arduino IDE自带的舵机库文件
const int Servo_Pin = 6;      //模拟开门
Servo myservo;      //定义舵机对象myservoconst int digitalInPin = 2; //D0 attach to digital 2const int analogPin=A0; //the DO on the Module attach to Pin7 on the SunFounder 
const int digitalPin=7;  //the D0 attach to pin7
int Astate=0;
boolean  Dstate=0;int redPin = 11;    // select the pin for the red LED
int greenPin = 12; 
int bluePin = 13; int buzzerPin = 8;//the pin of the active buzzer attach to pin8
int comdata;
const int motorIn1 = 9;
const int motorIn2 = 4;
#define rank1 150
#define rank2 200
#define rank3 250void set_tele(void)
{Serial.begin(115200);                  //波特率为115200delay(1000);Serial.println("AT\r\n");                  //判断模块是否正常delay(1000);
}
void tele(void)
{Serial.println("AT+CPIN?\r\n");         delay(1000);Serial.println("AT+CSQ\r\n");              delay(3000);Serial.print("AT+CREG?\r\n");          delay(3000);Serial.println("AT+CGATT?\r\n");  delay(1000);Serial.println("ATD15336551683;\r\n");      delay(30000);
}void setup() 
{pinMode(digitalInPin,INPUT);//set the pins state pinMode (digitalPin,INPUT);pinMode(redPin, OUTPUT); //set redPin as OUTPUTpinMode(greenPin, OUTPUT);pinMode(bluePin, OUTPUT);pinMode(buzzerPin,OUTPUT);//set the buzzer as as OUTPUTdigitalWrite(buzzerPin,LOW);//initialize the buzzerPin as LOW levelpinMode(motorIn1,OUTPUT);pinMode(motorIn2,OUTPUT);pinMode(Servo_Pin, OUTPUT);  //初始化舵机为输出模式myservo.attach(Servo_Pin);    //设置舵机控制引脚为6myservo.write(0);    //初始化舵机位置0set_tele();Serial.begin(9600);
} 
void loop()
{  boolean stat = digitalRead(digitalInPin);Serial.print("D0: "); Serial.println(stat); // print to serial monitor Serial.println(" ");Astate=analogRead(analogPin);//read the value of A0Serial.println(Astate); //peint if( stat == LOW){analogWrite(motorIn1,0);analogWrite(motorIn2,rank3);analogWrite(redPin, 255); //redanalogWrite(greenPin, 0);analogWrite(bluePin, 0);//digitalWrite(buzzerPin,LOW);myservo.write(90); //舵机旋转至90度delay(5000);      // 延时3000msmyservo.write(0);//舵机旋转至0度delay(1000);      // 延时3000msfor(int i = 200;i <= 500;i++)   //frequence loop from 200 to 800{tone(8,i);   //in pin7 generate a tone,it frequence is idelay(2);    //wait for 5 milliseconds   }delay(1000);   //wait for 4 seconds on highest frequencefor(int i = 500;i >= 200;i--)  //frequence loop from 800 downto 200{tone(8,i);  //in pin7 generate a tone,it frequence is idelay(2);  //delay 10ms}tele();}if((Astate>120 && Astate<150)){analogWrite(motorIn1,0);analogWrite(motorIn2,rank1);analogWrite(redPin, 0); //redanalogWrite(greenPin, 255);analogWrite(bluePin, 0);//digitalWrite(buzzerPin,LOW);myservo.write(90); //舵机旋转至90度delay(5000);      // 延时3000msmyservo.write(0);//舵机旋转至0度delay(1000);      // 延时3000msfor(int i = 200;i <= 500;i++)   //frequence loop from 200 to 800{tone(8,i);   //in pin7 generate a tone,it frequence is idelay(10);    //wait for 5 milliseconds   }delay(4000);   //wait for 4 seconds on highest frequencefor(int i = 500;i >= 200;i--)  //frequence loop from 800 downto 200{tone(8,i);  //in pin7 generate a tone,it frequence is idelay(10);  //delay 10ms}}else if((Astate>=150 && Astate<200)){analogWrite(motorIn1,0);analogWrite(motorIn2,rank2);analogWrite(redPin, 0); //redanalogWrite(greenPin, 0);analogWrite(bluePin, 255);//digitalWrite(buzzerPin,LOW);myservo.write(90); //舵机旋转至90度delay(5000);      // 延时3000msmyservo.write(0);//舵机旋转至0度delay(1000);      // 延时3000msfor(int i = 200;i <= 500;i++)   //frequence loop from 200 to 800{tone(8,i);   //in pin7 generate a tone,it frequence is idelay(5);    //wait for 5 milliseconds   }delay(2000);   //wait for 4 seconds on highest frequencefor(int i = 500;i >= 200;i--)  //frequence loop from 800 downto 200{tone(8,i);  //in pin7 generate a tone,it frequence is idelay(5);  //delay 10ms}}else if((Astate>=200)){analogWrite(motorIn1,0);analogWrite(motorIn2,rank3);analogWrite(redPin, 255); //redanalogWrite(greenPin, 0);analogWrite(bluePin, 0);//digitalWrite(buzzerPin,LOW);myservo.write(90); //舵机旋转至90度delay(5000);      // 延时3000msmyservo.write(0);//舵机旋转至0度delay(1000);      // 延时3000msfor(int i = 200;i <= 500;i++)   //frequence loop from 200 to 800{tone(8,i);   //in pin7 generate a tone,it frequence is idelay(2);    //wait for 5 milliseconds   }delay(1000);   //wait for 4 seconds on highest frequencefor(int i = 500;i >= 200;i--)  //frequence loop from 800 downto 200{tone(8,i);  //in pin7 generate a tone,it frequence is idelay(2);  //delay 10ms}tele();
/*      Serial.print("AT+CMGD=1");Serial.print("\r\n");Serial.print("AT");Serial.print("\r\n");Serial.print("AT+CPIN?");Serial.print("\r\n");Serial.print("AT+CSQ");Serial.print("\r\n");Serial.print("AT+CREG?");Serial.print("\r\n");Serial.print("AT+CGATT?");Serial.print("\r\n");Serial.print("ATD15336551683;");Serial.print("\r\n");
*/    }else{analogWrite(redPin, 0); //redanalogWrite(greenPin, 0);analogWrite(bluePin, 0);//digitalWrite(buzzerPin,HIGH);pinMode(buzzerPin,INPUT);pinMode(motorIn1,0);pinMode(motorIn2,0);}delay(200);//delay 200mswhile (Serial.available()){comdata= Serial.read();if(comdata==49){Serial.print("open the door\n");myservo.write(90); //舵机旋转至90度delay(1000);      // 延时3000msmyservo.write(0);//舵机旋转至0度delay(1000);      // 延时3000ms}if(comdata==50){Serial.print("open fmq\n");for(int i = 200;i <= 500;i++)   //frequence loop from 200 to 800{tone(8,i);   //in pin7 generate a tone,it frequence is idelay(5);    //wait for 5 milliseconds   }delay(4000);   //wait for 4 seconds on highest frequencefor(int i = 500;i >= 200;i--)  //frequence loop from 800 downto 200{tone(8,i);  //in pin7 generate a tone,it frequence is idelay(10);  //delay 10ms}delay(100);}if(comdata==51){Serial.print("close fmq\n");pinMode(buzzerPin,INPUT);delay(100);}if(comdata==52){Serial.print("111\n");analogWrite(motorIn1,0);analogWrite(motorIn2,rank1);delay(100);}if(comdata==74){Serial.print("222\n");analogWrite(motorIn1,0);analogWrite(motorIn2,rank2);delay(100);}if(comdata==54){Serial.print("333\n");analogWrite(motorIn1,0);analogWrite(motorIn2,rank3);delay(100);}}
}

五、演示视频

B站演示视频
CSDN演示视频

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377765.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

highcharts中series带参数的赋值问题

需要得到的代码如下&#xff1a; series: [{name: 棒号1,data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]}, {name: 棒号2,data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]}, {name: 棒号3,data: [-0.9, 0.6, 3.5, …

可编程ic卡 通用吗_8255可编程IC

可编程ic卡 通用吗Introduction 介绍 An 8255 programmable integrated circuit (IC) is an IC used for interfacing the microprocessor with the peripheral devices. It is a 40 pin IC which was introduced by INTEL to use with its 8085 and 8086 microprocessors. 82…

POJ 1944 Fiber Communications (枚举 + 并查集 OR 线段树)

题意 在一个有N&#xff08;1 ≤ N ≤ 1,000&#xff09;个点环形图上有P&#xff08;1 ≤ P ≤ 10,000&#xff09;对点需要连接。连接只能连接环上相邻的点。问至少需要连接几条边。 思路 突破点在于最后的结果一定不是一个环&#xff01;所以我们枚举断边&#xff0c;则对于…

九、逻辑回归多分类和softmax多分类

一、逻辑回归多分类 假设激活函数使用的是sigmoid函数 逻辑回归多分类其实是多个二分类而已&#xff0c;若求三分类问题需要对训练的数据样本进行适当的修改调整即可&#xff0c;如何修改样本数据可以参考逻辑回归二分类和多分类本质区别&#xff0c;内容都一样&#xff0c…

【C++grammar】继承与构造test1代码附录

目录1、main.cpp2、circle.cpp3、circle.h4、rectangle.cpp5、rectangle.h6、Shape.h1、main.cpp #include <iostream> #include <string> #include "Shape.h" #include "circle.h" #include "rectangle.h"//创建Shape/Circle/Rect…

hdu 4747 mex 线段树+思维

http://acm.hdu.edu.cn/showproblem.php?pid4747 题意&#xff1a; 我们定义mex(l,r)表示一个序列a[l]....a[r]中没有出现过得最小的非负整数&#xff0c; 然后我们给出一个长度为n的序列&#xff0c;求他所有的连续的子序列的mex(l,r)的和。 思路&#xff1a; 首先因为n的最大…

十、评估指标

我看过很多课程&#xff0c;不过内容都大差不差&#xff0c;也可以参考这篇模型评估方法 一、K折交叉验证 一般情况&#xff0c;我们得到一份数据集&#xff0c;会分为两类&#xff0c;一类是trainset训练集&#xff0c;另一类十testset测试集。通俗一点也就是训练集相当于平…

leetcode 47. 全排列 II 思考分析

题目 给定一个可包含重复数字的序列 nums &#xff0c;按任意顺序 返回所有不重复的全排列。 思考分析以及代码 这一题和前面的做过的两个题目有所关联&#xff1a; leetcode 46. 全排列 思考分析 再加上leetcode 491. 递增子序列 思考分析类似的去重操作。 先画出解空间树…

python添加数组元素_在Python中向数组添加元素

python添加数组元素An array can be declared by using "array" module in Python. 可以通过在Python中使用“数组”模块来声明数组 。 Syntax to import "array" module: 导入“数组”模块的语法&#xff1a; import array as array_alias_nameHere, im…

hdu 4472 Count(递推即dp)

题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid4472 代码&#xff1a; #include <cstdio> #include <cstring> #include <iostream> #include <cmath> #include <algorithm> #include <queue> #include <vector> …

如何在Java中同步ArrayList?

同步ArrayList (Synchronizing ArrayList) In java, there are two ways to synchronize ArrayList, 在Java中&#xff0c;有两种同步ArrayList的方法&#xff0c; With the help of synchronizedList() method 借助syncedList()方法 With the help of CopyOnWriteArrayList&l…

十一、决策树和随机森林

这门课和另一门课内容都差不多&#xff0c;可以参考七、决策树算法和集成算法该篇博文。 一、决策树相关概念 逻辑回归本质 逻辑回归&#xff1a;线性有监督分类模型。常用求解二分类问题&#xff0c;要么是A类别要么是B类别&#xff0c;一般会以0.5作为划分阈值&#xff0c…

【C++grammar】继承与构造

目录1.继承1、Inheritance (继承)2、避免一个类被继承&#xff08; C11 &#xff09;3、继承实例4、完整代码5、继承的优缺点是什么?2.继承中的构造函数1、 派生类继承的成员2、调用基类构造函数3.继承中的默认构造函数1、基类的无参构造函数2、由编译器自动生成的基类构造函数…

C语言预处理

所谓预处理是指在进行编译的第一遍扫描(词法扫描和语法分析)之前所作的工作。预处理是&#xff23;语言的一个重要功能&#xff0c; 它由预处理程序负责完成。当对一个源文件进行编译时&#xff0c; 系统将自动引用预处理程序对源程序中的预处理部分作处理&#xff0c; 处理完毕…

(转)将cocos2dx项目从VS移植到Eclipse

本文转自:http://www.cnblogs.com/Z-XML/p/3349518.html 引言&#xff1a;我们使用cocos2d-x引擎制作了一款飞行射击游戏&#xff0c;其中创新性地融入了手势识别功能。但是我们在移植过程中遇到了很多的问题&#xff0c;同时也发现网上的资料少而不全。所以在项目行将结束的时…

十二、聚类算法——相似度测量

两套学习资料都类似&#xff0c;可参考聚类算法实战 一、聚类 聚类&#xff1a;物以类聚&#xff0c;人以群分&#xff0c;是无监督学习中的一种。 没有y&#xff0c;只有x&#xff0c;把不同的x根据相似度自动的聚成好多堆儿 本质上&#xff0c;N个样本&#xff0c;映射到K个…

操作系统磁盘调度_磁盘调度| 操作系统

操作系统磁盘调度磁盘调度 (Disk Scheduling) One of the major duties of the operating is that, to use the hardware orderly and accurately. For disk drives, it has a duty of having a fast access time and disk bandwidth. Generally, bandwidth is the total numbe…

leetcode 344. 反转字符串 541. 反转字符串 II 双指针解

目录leetcode 344.反转字符串1、题目2、思考leetcode 541. 反转字符串 II1、题目2、思考leetcode 344.反转字符串 1、题目 2、思考 典型的双指针解法&#xff1a; 一个从前往后&#xff0c;一个从后往前&#xff0c;指针对应的交换即可。 class Solution { public:void reve…

关于银联在线支付和短彩信接口的开发——总结

9月份开始做用二维码做闭环的一个在线订购景区门票的项目&#xff0c;其中这样做是很好的&#xff0c;用二维码连接了线上与线下的交易和兑券。银联在线支付接口&#xff08;asp.net cs&#xff09;做的很好&#xff0c;方便调用开发。就是处理回值的时候得找个更好的方法才能显…

十三、聚类算法

六、聚类算法实战 一、聚类 聚类是一种无监督的机器学习任务&#xff0c;可以自动将数据划分为类cluster&#xff0c;因此聚类分组不需要提前被告知所划分的组应该是什么样子的。因为我们甚至可能都不知道我们在寻找什么&#xff0c;所以聚类是用于知识发现而不是预测。 聚类…