(完整版)蔬菜大棚温湿度监测系统毕业设计
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
蔬菜大棚温湿度监测系统
摘要
温湿度控制已成为当今社会研究的热门项目。是工业农业生产过程中必须考虑的情况,作为最常见的被控参数。温度和湿度已经不再是以一个个体的形式出现,而应在系统中一起考虑。广泛应用于实验室、温室大棚、花圃、粮仓乃至土壤等各个领域。而传统的温湿度控制则利用湿度表、毛发湿度表、双金属式测量计和湿度试纸等测试器材,通过人工自己进行检测。对不符合温度和湿度要求的库房进行通风、降温、去湿等操作。这种人工测试方法费时费力,效率低,并且随机性还很大,误差也很大。因此我们需要一种造价低廉、使用方便且计算精确的温湿度控制仪器来进行控制,也符合我们社会发展进步。利用单片机对温、湿度控制,具有控温、湿精度高、功能强、体积小、价格低,简单灵活等优点,很好的满足了工艺要求,给人们的生活带来了极大的方便,也为人们带了很好的利益。
本文通过使用STC89C52单片机、DHT11传感器模块、1602液晶显示屏模块以及继电器控制模块。很简单的实现的温湿度的控制要求。DHT11数字温湿度传感器把采集到的温湿度数据传给单片机,经过单片机的处理,准确的显示到液晶屏上,如果温度超过阀值,将会驱动继电器工作,继电器将驱动负载相应的工作。
关键词:传感器,温湿度,单片机,智能控制
Vegetable greenhouse temperature and today's social studies. Is a factor that must be considered in the industrial and agricultural production process. As the control parameters of the most common. Temperature and the system.Widely used in laboratory, greenhouse, flower
garden, granary andsoil etc.. The temperature and , cooling, dehumidification operation. This kind of manual test method is time-consuming and laborious, low efficiency. Allrandom. Big error. Hence the need for a low cost, easy to use and the calculation of the temperature and , strong function, small size, low price, the advantages of simplicity and flexibility, good to meet theprocess requirements.
In this paper, by using the STC89C52 SCM, DHT11 sensor module,1602 liquid crystal display module and relay control module. Simplerealization of the control of temperature and . If the temperature exceeds the
threshold, will drive the relay to work. The relay will drive the load corresponding work.
Keywords: Sensor, temperature and =P1^5; 降温灯
sbit Led_shengwen=P1^4; 升温灯
sbit Key_TH1 = P3^2;
sbit Key_TH2 = P3^3;
sbit Key_HH1 = P3^4;
sbit Key_HH2 = P3^5;
(3) 常量、变量定义
定义标识
volatile bit FlagStartRH = 0; 开始温湿度转换标志
volatile bit FlagKeyPress = 0; 有键按下
定义温湿度传感器用外部变量
extern U8 U8FLAG,k;
extern U8 U8count,U8temp;
extern U8 U8T_data_H,U8T_data_L,U8RH_data_H,U8RH_data_L,U8checkdata;
extern U8 U8T_data_H_temp,U8T_data_L_temp,U8RH_data_H_temp,U8RH_data_L_temp; extern U8 U8checkdata_temp;
extern U8 U8comdata;
extern U8 count, count_r;
U16 temp;
S16 temperature, = 1;
Led_shengwen = 1;
TH = 40;
HH = 85;
keyvalue = 0;
keyTH1 = 1;
keyTH2 = 1;
keyHH1 = 1;
keyHH2 = 1;
}
定时器0初始化
void Timer0_Init()
{
ET0 = 1; 允许定时器0中断
TMOD = 1; 定时器工作方式选择
TL0 = 0x06;
TH0 = 0xf8; 定时器赋予初值
TR0 = 1; 启动定时器
}
定时器0中断
void Timer0_ISR (void) interrupt 1 using 0 {
TL0 = 0x06;
TH0 = 0xf8; 定时器赋予初值
每2秒钟启动一次温湿度转换
RHCounter ++;
if (RHCounter >= 1000)
{
FlagStartRH = 1;