基于51单片机的智能温控开关的设计论文_第1页
基于51单片机的智能温控开关的设计论文_第2页
基于51单片机的智能温控开关的设计论文_第3页
基于51单片机的智能温控开关的设计论文_第4页
基于51单片机的智能温控开关的设计论文_第5页
已阅读5页,还剩14页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

returnmidpos+1; }}voiddisplay(unsignedcharData){ DigShowNumber(2,Data/10,0); DigShowNumber(1,Data%10,0);}voiddisplay_aim(unsignedcharData){ DigShowNumber(6,Data/10,0); DigShowNumber(5,Data%10,0);}voidtimer_init(void){ TMOD=0x01; TH0=(65536-50000)/256; TL0=(65536-50000)%256; EA=1; ET0=1; TR0=1;}voidtime0(void)interrupt1{ uint8times; TH0=(65536-50000)/256; TL0=(65536-50000)%256; times++; if(10==times) { times=0; period=1; }}voiddelay_ms(unsignedintdt){registerunsignedcharbt,ct;for(;dt;dt--)for(ct=2;ct;ct--)for(bt=250;--bt;);}voidworkon(){if(temp>=aim_temp){RELAY=0;BUZZER=1;LED1=1;LED2=0;}else{RELAY=1;BUZZER=0;LED1=0;LED2=1;}}voidworkoff(){RELAY=0;BUZZER=0;LED1=1;LED2=1;}voidmain(){ unsignedcharmodel; unsignedchard=0x00; unsignedcharkey; unsignedcharwork=0; RELAY=0;BUZZER=0; LED1=1;LED2=1; period=1; timer_init(); model=model_set(anlog_output_on,anlog_model_0,auto_increment_off,anlog_channel_0); while(1) { //开关动作时温度设置 if(KEY_ADD==0){delay_ms(10);if(KEY_ADD==0){aim_temp++;while(KEY_ADD==0);}} if(KEY_DEC==0){delay_ms(10);if(KEY_DEC==0){aim_temp--;while(KEY_DEC==0);}} //温度采集 if(period) { period=0; d=ReadIIC(0x90,model); temp=temp_measure(d); } //温度显示 display(temp); display_aim(aim_temp); //开关动作 if(KEY_START==0) { delay_ms(10); if(KEY_START==0) { work=1; workon(); while(KEY_START==0); } } elseif(work==1)workon(); if(KEY_STOP==0) { delay_ms(10); if(KEY_STOP==0) { work=0; workoff(); while(KEY_STOP==0); } } }}PCF8591模块配置PCF8591_AD_drv.C#include"PCF8591_AD_drv.h"unsignedcharmodel_set(bitanlog_sw,unsignedcharinput_model,bitauto_increment,unsignedcharAD_channel){ unsignedcharControl_Key; Control_Key=0x00; if(anlog_sw) { Control_Key|=0x40; } input_model=input_model<<4; Control_Key|=input_model; if(auto_increment) { Control_Key|=0x04; } Control_Key|=AD_channel; returnControl_Key;}PCF8591_AD_drv.H#ifndef__PCF8591_H__#define__PCF8591_H__#include<reg52.h>/*******控制字定义*******//*模拟信号输出开关*/#defineanlog_output_off0 //禁止模拟输出#defineanlog_output_on1 //开启模拟输出/*模拟输入模式设置*/#defineanlog_model_00x00//四输入#defineanlog_model_10x01//共差分输入#defineanlog_model_2 0x02 //双直通单差分输入#defineanlog_model_3 0x03//双差分输入/*通道自动增量设置*/#defineauto_increment_off0//禁止通道自动增量#defineauto_increment_on1//开启通道自动增量/*模拟转换通道设置*/#defineanlog_channel_00x00//通道0#defineanlog_channel_10x01//通道1#defineanlog_channel_20x02//通道2#defineanlog_channel_30x03//通道3unsignedcharmodel_set(bitanlog_sw,unsignedcharinput_model,bitauto_increment,unsignedcharAD_channel);#endifIIC总线配置IIC_drv.C#include"IIC_drv.h"staticvoidStart(void){ Sda=1; Scl=1; Sda=0;}staticvoidStop(void){ Sda=0; Scl=1; Sda=1;}staticunsignedcharRespons(void){ unsignedcharOverTime=0;//超时 unsignedcharTempFlag=0; OverTime=0;Sda=1;//释放数据线Scl=1; while(1) { if(Sda)//应答信号没来 { if(OverTime++>200) { TempFlag=0;//应答信号长时间没有来,认为无应答 break; } } else { TempFlag=1;///检测到应答信号 break; } } Scl=0; returnTempFlag;}staticvoidNoRespons(void)//非应答{Sda=1;//释放数据线Scl=1; Scl=0;}staticvoidWriteByte(unsignedchartemp){ unsignedchari; Scl=0; for(i=0;i<8;i++) { Sda=temp&0x80; temp<<=1; Scl=1;//scl拉高,准备写数据 Scl=0;//scl拉低,写数据完成 }}staticunsignedcharReadByte(void){ unsignedchari; unsignedcharx=0; for(i=0;i<8;i++) { Scl=1; x<<=1; x|=(unsignedchar)Sda; Scl=0; } returnx;}voidWriteIIC(unsignedchardevice,unsignedcharparameter,unsignedchartemp){ Start(); WriteByte(device); if(Respons()) { WriteByte(parameter); if(Respons()) { WriteByte(temp); if(Respons()) { Stop(); } else { Stop(); } } else { Stop(); } } else { Stop(); }}unsignedcharReadIIC(unsignedchardevice,unsignedcharparameter){ unsignedcharx; Start(); WriteByte(device); if(Respons()) { WriteByte(parameter); if(Respons()) { Start(); WriteByte(device|0x01); if(Respons()) { x=ReadByte(); NoRespons(); Stop(); } else { Stop(); } } else { Stop(); } } else { Stop(); } returnx;}IIC_drv.h#include<reg52.h>#include<intrins.h>sbitScl=P2^1; //串行时钟sbitSda=P2^0; //串行数据voidWriteIIC(unsignedchardevice,unsignedcharaddress,unsignedchartemp);unsignedcharReadIIC(unsignedchardevice,unsignedcharaddress);显示模块配置DIGITRON_DRV_C#include"digitron_drv.h"codeuint8Segment[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};codeuint8Select[]={0xff,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80};staticvoidDigOutput(uint8SelectByte,uint8SegmentByte){uint8i; DIG_SHCP=0; DIG_STCP=0; for(i=0;i<8;i++) { if(SegmentByte&0x80){ DIG_DATA=1;} else{ DIG_DATA=0;} _nop_(); DIG_SHCP=1; _nop_(); DIG_SHCP=0; _nop_(); SegmentByte<<=1; } for(i=0;i<8;i++) { if(SelectByte&0x80) DIG_DATA=1; else DIG_DATA=0; _nop_(); DIG_SHCP=1; _nop_(); DIG_SHCP=0; _nop_(); SelectByte<<=1; } DIG_STCP=1; _nop_(); DIG_STCP=0; _nop_();}voidDigShowCustom(uint8DigSelect,uint8CustomSeg){if(0<DigSelect<9){DigOutput(Select[DigSelect],CustomSeg);}}voidDigShowNumber(uint8DigSelect,uint8Number,bitDp){if((0<DigSelect<9)&&(Number<10)){if(Dp) {DigOutput(Select[DigSelect],(Segment[Number]&~0x80));

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论