资料编号:102 下面是相关功能视频演示:
102-基于stm32单片机自动灭火火灾报警装置Proteus仿真(仿真+源码+全套资料)
功能介绍:
火焰传感器的原理:是通过感知外部特殊波段光照强度的突变来判断是否出现火灾,该仿真采用ADC采集光照强度,发现有火焰情况,自动打开水泵进行灭火,也可以设置为手动模式,进行手动打开\关闭水泵。
下面是部分程序展示:
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;
int temp;
delay_init(); //延时函数初始化
LCD1602_Init();
ADC1_GPIO_Config();
ADC_Config();
LCD1602_ShowStr(1,0,"LIGHT=000Lux",12);//显示程序
LED_Init();
KEY_Init();
while(1)
{
b=ADC_GetConversionValue(ADC1);//ADC采集
temp=(float)b*(3.4/4096)*100;//计算当前亮度
a=temp/100;
c=temp%100/10;
d=c%10;
LCD_ShowNum(7,0,a); //显示当前亮度
LCD_ShowNum(8,0,c);
LCD_ShowNum(9,0,d);
if(KEY3==0) //设置自动还是手动
{
if(temp>100) LED=1; //亮度大于100 自动打开水泵灭火
else LED=0;
}
else //手动开关水泵
{
if(KEY1==0) LED=1;
if(KEY2==0) LED=0;
}
delay_ms(200);
}
}
下面是该资料的分享下载链接:
https://pan.baidu.com/s/1h8AnUnoKpiYtlij6tVsJUQ?pwd=ve6r