资料编号:097 下面是相关功能视频演示:
97-基于stm32单片机有害气体监测检测Proteus仿真(仿真+源码+全套资料)
功能介绍:检测当前的有害气体浓度,LCD1602显示,并且可以自动打开关闭风扇,也可以通过手动按键打开关闭风扇通风,全套资料齐全,程序采用C语言,仿真使用Proteus,程序有中文注释,更容易看懂
下面是部分程序展示:
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); //使能P端口时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //LED0 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_SetBits(GPIOA,GPIO_Pin_3); //输出高
}
void KEY_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure; //定义结构体变量
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPU; //上拉输入
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init(GPIOA,&GPIO_InitStructure);
}
int main(void)
{
int a,b,c,d;
float temp;
delay_init(); //延时函数初始化
LCD1602_Init();
ADC1_GPIO_Config();
ADC_Config();
LCD1602_ShowStr(2,0,"Qiti=0.0mg/L",13);
LED_Init();
KEY_Init();
while(1)
{
b=ADC_GetConversionValue(ADC1);
temp=(float)b*(3.4/4096);
a=temp/1;
c=temp*10;
d=c%10;
LCD_ShowNum(7,0,a);
LCD_ShowNum(9,0,d);
if(KEY3==0)
{
if(temp>2) LED=1;
else LED=0;
}
else
{
if(KEY1==0) LED=1;
if(KEY2==0) LED=0;
}
delay_ms(200);
}
}
下面是该资料的分享下载链接:
https://pan.baidu.com/s/1ls4PTzKrh5FuJNjBqV96bw?pwd=2ana