赞
踩
一:功能介绍
1、采用stm32单片机+LCD1602+DHT11温湿度传感器+DS1302传感器+空气质量传感器+按键+蜂鸣器+LED灯,制作一个空气质量DHT11温湿度监测报警系统;
2、通过按键设置温度和空气质量浓度阈值,LCD1602显示相关阈值;
3、该系统可以采集空气质量浓度和温湿度;温度大于设置值,LED灯闪烁提醒,当空气质量采集浓度大于设置浓度,蜂鸣器报警提醒;
4、LCD1602显示ds1302时钟的时间和采集的温湿度、空气质量浓度、温度和空气质量浓度的阈值;
二:仿真演示视频+程序简要讲解:(程序有中文注释,新手容易看懂)
95-基于stm32单片机空气质量DHT11温湿度监测报警系统Proteus仿真+程序源码+讲解视频
三:设计软件介绍
本设计使用C语言编程设计,程序代码采用keil5编写,程序有中文注释,新手容易看懂,仿真采用Proteus软件进行仿真,演示视频使用的是Proteus8.9版本;资料包里有相关软件包,可自行下载安装。
四:程序打开方法
特别注意:下载资料包以后一定要先解压!!!(建议解压到桌面上,文件路径太深会导致程序打开异常),解压后再用keil5打开。
- 程序部分展示,有中文注释,新手容易看懂
- //T1 温度
- WrByte1602(0,0,'T'); //.
- WrByte1602(0,1,'='); //.
- WrByte1602(0,2,AsciiCode[wendu%100/10]);
- WrByte1602(0,3,AsciiCode[wendu%10]);
- WrByte1602(0,4,' ');
- //T2 湿度
- WrByte1602(0,5,'H'); //.
- WrByte1602(0,6,'='); //.
- WrByte1602(0,7,AsciiCode[shidu%100/10]);
- WrByte1602(0,8,AsciiCode[shidu%10]);
- WrByte1602(0,9,' ');
- //T3 浓度
- WrByte1602(0,10,'N'); //.
- WrByte1602(0,11,'='); //.
- WrByte1602(0,12,AsciiCode[nongdu%1000/100]);
- WrByte1602(0,13,AsciiCode[nongdu%100/10]);
- WrByte1602(0,14,AsciiCode[nongdu%10]);
- WrByte1602(0,15,' ');
- xxx=0;yyy=1;
- WrByte1602(yyy,xxx++,AsciiCode[shi%100/10]);//显示时间
- WrByte1602(yyy,xxx++,AsciiCode[shi%10]);
- WrByte1602(yyy,xxx++,':');
-
-
- WrByte1602(yyy,xxx++,AsciiCode[fen%100/10]);
- WrByte1602(yyy,xxx++,AsciiCode[fen%10]);
- WrByte1602(yyy,xxx++,':');
- WrByte1602(yyy,xxx++,AsciiCode[miao%100/10]);
- WrByte1602(yyy,xxx++,AsciiCode[miao%10]);
-
-
- WrByte1602(yyy,xxx++,' '); //显示温度阈值
- WrByte1602(yyy,xxx++,'T');
- WrByte1602(yyy,xxx++,AsciiCode[wendu1%100/10]);
- WrByte1602(yyy,xxx++,AsciiCode[wendu1%10]);
- WrByte1602(yyy,xxx++,' ');
- WrByte1602(yyy,xxx++,'N'); //显示浓度阈值
- WrByte1602(yyy,xxx++,AsciiCode[nongdu1%100/10]);
- WrByte1602(yyy,xxx++,AsciiCode[nongdu1%10]);
- WrByte1602(yyy,xxx++,' ');
- }
-
-
- int main(void)
- {
- char i=0;
- float vol;//电压
- //时钟配置
- SystemInit();
- SystemCoreClockUpdate();
- //引脚配置
- GPIO_Configuration();
- //LCD1602初始化
- Init1602();
- NVICConfig();
- //RCC时钟开启
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_TIM1, ENABLE);
- RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2, ENABLE);
- RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM3, ENABLE);
- DS1302_Configuration();
- //获取浓度值
- ADC_Set();
- //DS1302数据编码格式需要进行转换
- ReadDS1302Clock(time_data);
- shi = time_data[3]%16+time_data[3]/16*10;
- fen = time_data[4]%16+time_data[4]/16*10;
- miao = time_data[5]%16+time_data[5]/16*10;
- PBout(14)=PBout(6)=1;//LED灯和蜂鸣器默认关闭
- while (1)
- {
- i++;
- delay_ms(10);
- if(i>=100)
- {
- i=0;
- vol = ADC_GetConversionValue(ADC1);
- //根据阻值计算浓度
- nongdu = vol*(3.4/4096)*33;
-
-
- //读取温湿度
- DHT11_receive(&shidu,&wendu);
- ReadDS1302Clock(time_data);
- shi = time_data[3]%16+time_data[3]/16*10;
- fen = time_data[4]%16+time_data[4]/16*10;
- miao = time_data[5]%16+time_data[5]/16*10;
- //显示全部参数
- Display();
- }
- anjiansaomiao();//按键扫描
- //浓度大于阈值
- if(nongdu>nongdu1 )
- {
- PBout(6)=0;//蜂鸣器提醒
- }
- else PBout(6)=1;//蜂鸣器关闭
-
- //温度>阈值 LED闪烁提醒
- if(wendu>wendu1 )
- {
- PBout(14)=~PBout(14);
- }
- else PBout(14)=1;//否则关闭
- }
- }
五:仿真文件(采用Proteus打开)
六:资料清单展示(文件中包含的相关资料)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。