一. 系统概述
系统通过STM32单片机进行主控,利用MQ-2传感器检测甲烷、CO及其他可燃气体。检测到的气体浓度数据会实时显示在屏幕上,并根据设定的阈值进行监控。如果检测到的气体浓度超过设定阈值,系统会发出警报。
二. 仿真功能描述
- 在LCD1602显示屏上实时显示检测到的可燃气体浓度及设定的阈值。用户可以通过滑动变阻器调整可燃气体浓度的输入值。当气体浓度超过设定阈值时,系统会发出警报。
- 用户可以通过按键调节阈值设置。当可燃气体浓度低于设定阈值时,系统将停止报警。
三.程序设计
#include "sys.h"
#include "delay.h"
#include "pcf8591.h"
#include "1602.h"
#include "stm32f10x.h"
#include "Beep_Led_Relay.h"
#include "delay.h"
#include "key.h"
/************************************************
版权:小常硬件
公众号:微信搜索“小常硬件“在公众号免费下载相关资料
************************************************/
int main(void)
{
u8 Gasmax=65;
u8 c;
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//设置中断优先级分组为组2:2位抢占优先级,2位响应优先级
delay_init(); //延时函数初始化
LCD1602_GPIO_Configuration();
PCF8591_Init();
Led1_init();//pb13
KEY1_Init();//pb14pb15
write_str(0,0,(u8*)"Gas:");
write_str(0,1,(u8*)"Gasmax:");
while(1)
{
if(KEY1==0|KEY2==0)
{
delay_ms(10);
if(KEY1==0) { Gasmax++; }
if(KEY2==0) { Gasmax--; }
delay_ms(200);
while(KEY1==1&KEY2==1);
}
write_num(6+2,1,Gasmax);
c= PCF8591_ADC_Input(0x90,1);
write_num(6+2,0,c);
if(c>Gasmax)
{
write_str(11+2,1,(u8*)"Exc");
Led1_1=1;
delay_ms(200);
write_str(11+2,1,(u8*)" ");
Led1_1=0;
Led1_1=0;
Led1_1=1;
Led1_1=0;
Led1_1=1;
Led1_1=1;
Led1_1=1;
delay_ms(200);
}
}
}
24-32f-21