【源码目录】智能家居传感器及蓝牙程序├── CORE
│ ├── core_cm3.c
│ ├── core_cm3.h
│ └── startup_stm32f10x_hd.s
├── HARDWARE
│ ├── ADC
│ │ ├── adc.c
│ │ └── adc.h
│ ├── BEEP
│ │ ├── beep.c
│ │ └── beep.h
│ ├── DHT11
│ │ ├── dht11.c
│ │ └── dht11.h
│ ├── HC05
│ │ ├── hc05.c
│ │ └── hc05.h
│ ├── KEY
│ │ ├── key.c
│ │ └── key.h
│ ├── LCD
│ │ ├── font.h
│ │ ├── lcd.c
│ │ └── lcd.h
│ ├── LED
│ │ ├── led.c
│ │ └── led.h
│ ├── TIMER
│ │ ├── timer.c
│ │ └── timer.h
│ └── USART3
│ ├── usart3.c
│ └── usart3.h
├── OBJ
│ └── DHT11.hex
├── STM32F10x_FWLib
│ ├── inc
│ │ ├── misc.h
│ │ ├── stm32f10x_adc.h
│ │ ├── stm32f10x_bkp.h
│ │ ├── stm32f10x_can.h
│ │ ├── stm32f10x_cec.h
│ │ ├── stm32f10x_crc.h
│ │ ├── stm32f10x_dac.h
│ │ ├── stm32f10x_dbgmcu.h
│ │ ├── stm32f10x_dma.h
│ │ ├── stm32f10x_exti.h
│ │ ├── stm32f10x_flash.h
│ │ ├── stm32f10x_fsmc.h
│ │ ├── stm32f10x_gpio.h
│ │ ├── stm32f10x_i2c.h
│ │ ├── stm32f10x_iwdg.h
│ │ ├── stm32f10x_pwr.h
│ │ ├── stm32f10x_rcc.h
│ │ ├── stm32f10x_rtc.h
│ │ ├── stm32f10x_sdio.h
│ │ ├── stm32f10x_spi.h
│ │ ├── stm32f10x_tim.h
│ │ ├── stm32f10x_usart.h
│ │ └── stm32f10x_wwdg.h
│ └── src
│ ├── misc.c
│ ├── stm32f10x_adc.c
│ ├── stm32f10x_bkp.c
│ ├── stm32f10x_can.c
│ ├── stm32f10x_cec.c
│ ├── stm32f10x_crc.c
│ ├── stm32f10x_dac.c
│ ├── stm32f10x_dbgmcu.c
│ ├── stm32f10x_dma.c
│ ├── stm32f10x_exti.c
│ ├── stm32f10x_flash.c
│ ├── stm32f10x_fsmc.c
│ ├── stm32f10x_gpio.c
│ ├── stm32f10x_i2c.c
│ ├── stm32f10x_iwdg.c
│ ├── stm32f10x_pwr.c
│ ├── stm32f10x_rcc.c
│ ├── stm32f10x_rtc.c
│ ├── stm32f10x_sdio.c
│ ├── stm32f10x_spi.c
│ ├── stm32f10x_tim.c
│ ├── stm32f10x_usart.c
│ └── stm32f10x_wwdg.c
├── SYSTEM
│ ├── delay
│ │ ├── delay.c
│ │ └── delay.h
│ └── sys
│ ├── sys.c
│ └── sys.h
├── USER
│ ├── DHT11.uvguix.123
│ ├── DHT11.uvguix.lenovo
│ ├── DHT11.uvoptx
│ ├── DHT11.uvprojx
│ ├── JLinkSettings.ini
│ ├── MQ-2.c
│ ├── main.c
│ ├── stm32f10x.h
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.h
│ ├── system_stm32f10x.c
│ └── system_stm32f10x.h
└── keilkilll.bat
19 directories, 87 files
#include "led.h"#include "delay.h"#include "key.h"#include "sys.h"#include "lcd.h"#include "usart3.h" #include "dht11.h" #include "adc.h" #include "beep.h" #include "hc05.h" #include <stm32f10x.h> /************************************************ ALIENTEK精英STM32开发板实验29 DHT11数字温湿度传感器 实验 技术支持:www.openedv.com 淘宝店铺:http://eboard.taobao.com 关注微信公众平台微信号:"正点原子",免费获取STM32资料。 广州市星翼电子科技有限公司 作者:正点原子 @ALIENTEK************************************************/ int main(void) { u8 t=0; u8 temperature; u8 humidity; u8 adcx; delay_init(); //延时函数初始化 NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//设置中断优先级分组为组2:2位抢占优先级,2位响应优先级 usart3_init(9600); //串口初始化为115200LED_Init(); //初始化与LED连接的硬件接口LCD_Init(); //初始化LCD Adc_Init();BEEP_Init();HC05_Init(); while(1){ if(t%10==0)//每100ms读取一次{ DHT11_Read_Data(&temperature,&humidity);//读取温湿度值adcx=Get_Adc_Average(ADC_Channel_1,10); //读取烟雾值 u3_printf("温度=%d",temperature ); u3_printf("湿度=%d",humidity); u3_printf("烟雾值=%d",adcx); BEEP=0;delay_ms(500);if(adcx>1170) BEEP=1;delay_ms(500); if(temperature>28||temperature<18||adcx>500);GPIO_SetBits(GPIOB,GPIO_Pin_5); //LED0对应引脚GPIOB.5拉高,灭 等同LED0=1;if(humidity<20);{GPIO_SetBits(GPIOE,GPIO_Pin_5); //LED1对应引脚GPIOE.5拉低,亮 等同LED1=0}if(humidity>40){GPIO_ResetBits(GPIOE,GPIO_Pin_5);}} delay_ms(500);t ;if(t==20){t=0;LED0=!LED0;}}}
评论