资料编号:189
一:功能介绍
1、采用stm32单片机+LCD1602显示屏+DHT11温湿度模块+LED+电位器,制作一个基于stm32单片机环境噪音检测简易音量分贝仪Proteus仿真;
2、通过DHT11温湿度传感器,读取当前环境的温度和湿度,数值显示到LCD1602显示屏上;
3、通过声音传感器(电位器模拟)读取当前的音量分贝,显示到LCD1602显示屏上;
4、当音量分贝小于40为低噪音,40-70为中噪音,大于70为高噪音,并且有对应的指示灯显示噪音状态;
二:仿真演示视频+程序简要讲解(程序有中文注释,新手容易看懂)
189-基于stm32单片机环境噪音检测简易音量分贝仪Proteus仿真+源程序
三:设计软件介绍
本设计使用C语言编程设计,程序代码采用keil5编写,程序有中文注释,新手容易看懂,仿真采用Proteus软件进行仿真,演示视频使用的是Proteus8.9版本;资料包里有相关软件包,可自行下载安装。
四:程序打开方法
特别注意:下载资料包以后一定要先解压! !!(建议解压到桌面上,文件路径太深会导致程序打开异常),解压后再用keil5打开。
程序部分展示,有中文注释,新手容易看懂
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
//LCD1602 管脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8| GPIO_Pin_9| GPIO_Pin_10| GPIO_Pin_11| GPIO_Pin_12| GPIO_Pin_13| GPIO_Pin_14| GPIO_Pin_15;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 |GPIO_Pin_6|GPIO_Pin_5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
//DHT11
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
void IO_out( void )
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_GPIOC ,ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11|GPIO_Pin_10|GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOC, &GPIO_InitStructure);
}
int main(void)
{
int ADC_num2;
int temp2;
GPIO_Configuration();//初始化
ADC1_GPIO_Config();
ADC_Config();
Init1602();
IO_out();
WrByte1602(1,1,' '); //字符显示
WrByte1602(1,2,'Y');
WrByte1602(1,3,'L');
WrByte1602(1,4,'=');
WrByte1602(0,9,' ');
WrByte1602(0,10,'W');
WrByte1602(0,11,'D');
WrByte1602(0,12,'=');
WrByte1602(1,9,' ');
WrByte1602(1,10,'S');
WrByte1602(1,11,'D');
WrByte1602(1,12,'=');
delay_ms(500);
while(1)
{
//读取温湿度
DHT11_receive(&shidu,&wendu);
ADC_num2=Get_ADC(ADC_Channel_1);//读取音量采集值
temp2=ADC_num2*100/4096;
WrByte1602(1,5,AsciiCode[temp2%1000/100]); //显示音量大小
WrByte1602(1,6,AsciiCode[temp2%100/10]);
WrByte1602(1,7,AsciiCode[temp2%10]);
WrByte1602(0,13,AsciiCode[wendu%1000/100]); //显示温度
WrByte1602(0,14,AsciiCode[wendu%100/10]);
WrByte1602(0,15,AsciiCode[wendu%10]);
WrByte1602(1,13,AsciiCode[shidu%1000/100]); //显示湿度
WrByte1602(1,14,AsciiCode[shidu%100/10]);
WrByte1602(1,15,AsciiCode[shidu%10]);
if(temp2<40) //低噪音
{
PCout(11)=0;
PCout(10)=1;
PCout(9)=1;
}
if(temp2<70&&temp2>39)//中噪音
{
PCout(11)=1;
PCout(10)=0;
PCout(9)=1;
}
if(temp2>69) //高噪音
{
PCout(11)=1;
PCout(10)=1;
PCout(9)=0;
}
}
}
五:仿真文件(采用Proteus打开)
六:资料清单展示(文件中包含的相关资料)