aip650做一个孵化器的温控,温度显示搞定了,按键响应不知怎么搞。有会的吗?请高手指点下。
单片机源程序如下:
- #include <absacc.h>
- #include <intrins.h>
- #include <STC89C5xRC.H>
- //定义常量
- #define true 1
- #define false 0
- #define uchar unsigned char
- #define uint unsigned int
- //定义变量
- uchar Display_Code[12] ={0xf5,0x05,0x73,0x57,0x87,0xd6,0xf6,0x45,0xf7,0xd7,0x08,0x02}; //段码
- //0, 1, 2 , 3, 4, 5, 6, 7, 8, 9, . , -
- uchar Dig_Bit_Code[4]={0x6a,0x6e,0x6c,0x68};//位码
- uchar Light_Level_Code[8]={0x11,0x21,0x31,0x41,0x51,0x61,0x71,0x01 };//亮度调节
- uint h; //温度使用
- uint temp;//温度
- //**************温度小数部分用查表法***********//
- uchar ditab[16]=
- {0x00,0x01,0x01,0x02,0x03,0x03,0x04,0x04,0x05,0x06,0x06,0x07,0x08,0x08,0x09,0x09};
- uchar temp_data[2]={0x00,0x00}; //读出温度暂放
- uchar display[5]={0x00,0x00,0x00,0x00,0x00}; //显示单元数据,共4个数据和一个运算暂用
-
- //定义IO口
- sbit SDA=P3^6;
- sbit SCL=P3^7;
- sbit DQ=P1^0; //温度输入口
- sbit DIN=P1^1; //LED小数点控制
- //函数声名
- /*温度使用*/
- void delay(uint t);
- void work_temp(uint tem);
- read_temp();
- void xiashiwendu(uint tem1);
- uchar read_byte(void);
- void write_byte(uchar val);
- void ow_reset(void);
- /*I2C相关*/
- void I2CWait(void);
- bit I2CStart(void);
- void I2CStop(void);
- void I2CSendAck(void);
- void I2CSendNoAck(void);
- bit I2CWaitAck(void);
- unsigned char AipReadKey();
- void I2CSendByte(unsigned char demand,bit order);
- unsigned char I2CReceiveByte(void);
- //void Delay(unsigned int nn);
- void AiP650_CLR();
- void AiP650_DisPlay(unsigned char Dig_Bit,unsigned char Display_num);
- void AiP650_Set(unsigned char add,unsigned char dat);//数码管显示
- void Delay(unsigned int nn);
- void Light_Level_Set(unsigned char level);
- void xianshijianzhi(uint key);
- /*******************************************************
- 功能:主函数
- 描述:初始化、读温度显示,读键值处理
- 参数:无
- 返回:无
- ********************************************************/
- main()
- {unsigned char keyvalue;
-
- P3=0xFF;
-
- while(1)
- {
- uint wendu;//温度变量
- uint maxwd=40.0;//停止温度
- uint minwd=30.0;//开始温度
-
- //AiP650_CLR();
- wendu=read_temp();
- xiashiwendu(wendu);
-
- keyvalue=AipReadKey();
- //if(keyvalue==0x44)
- // xianshijianzhi(keyvalue);
- //if(keyvalue!=0x2e)
- //{ delay(2000);
- //if(keyvalue!=0x2e)
- switch(keyvalue)
- {case 0x47:
- Light_Level_Set(4);
- AiP650_DisPlay(1,1);
-
- case 0x57:
- Light_Level_Set(4);
- AiP650_DisPlay(1,2);
-
- case 0x5f:
- Light_Level_Set(4);
- AiP650_DisPlay(1,3);
-
- case 0x67:
- Light_Level_Set(4);
- AiP650_DisPlay(1,4);
-
- case 0x6f:
- Light_Level_Set(4);
- AiP650_DisPlay(1,5);
- case 0x6c:
- Light_Level_Set(4);
- AiP650_DisPlay(1,6);
-
- case 0x77:
- Light_Level_Set(4);
- AiP650_DisPlay(1,7);
- case 0x6e:
- Light_Level_Set(4);
- AiP650_DisPlay(1,8);
-
-
- break;
-
-
-
-
- ; }
- }
-
- /* unsigned char i;for(i=0;i<12;i++)
- {
- AiP650_DisPlay(1,i);
- AiP650_DisPlay(2,i);
- AiP650_DisPlay(3,i);
- Light_Level_Set(4);*/
- //此处添加显示程序,可参考5、6、7章
- // delay(500);}
-
- }
- /*******************************************************
- 功能:I2CWait
- 描述:I2C延时
- 参数:无
- 返回:无
- ********************************************************/
- void I2CWait(void)
- {
- _nop_();_nop_();_nop_();_nop_();
- }
- /*******************************************************
- 功能:I2CStart
- 描述:开启SD2000的I2C总线
- 参数:无
- 返回:位变量I2CStart,1=I2C总线可用,0=I2C总线不可用
- ********************************************************/
- bit I2CStart(void)
- {
- SDA=1;
- SCL=1;
- I2CWait();
- if(!SDA)return false;//SDA线为低电平则总线忙,退出
- SDA=0;
- I2CWait();
- while(SDA)return false;//SDA线为高电平则总线出错,退出
- SCL=0;
- I2CWait();
- return true;
- }
- /*******************************************************
- 功能:I2CStop
- 描述:关闭SD2000的I2C总线
- 参数:无
- 返回:无
- ********************************************************/
- void I2CStop(void)
- {
- SDA=0;
- SCL=0;
- I2CWait();
- SCL=1;
- I2CWait();
- SDA=1;
- }
- /*******************************************************
- 功能:I2CSendAck
- 描述:发送 ACK
- 参数:无
- 返回:无
- ********************************************************/
- void I2CSendAck(void)
- {
- SDA=0;
- SCL=0;
- I2CWait();
- SCL=1;
- I2CWait();
- SCL=0;
- }
- /*******************************************************
- 功能:I2CSendNoAck
- 描述:发送NO ACK
- 参数:无
- 返回:无
- ********************************************************/
- void I2CSendNoAck(void)
- {
- SDA=1;
- SCL=0;
- I2CWait();
- SCL=1;
- I2CWait();
- SCL=0;
- }
- /*******************************************************
- 功能:I2CWaitAck
- 描述:读取ACK信号
- 参数:无
- 返回:位变量I2CWaitAck,返回为:1=有ACK,0=无ACK
- ********************************************************/
- bit I2CWaitAck(void)
- {
- unsigned char errtime=255;
- SCL=0;
- SDA=1;
- I2CWait();
- SCL=1;
- I2CWait();
- while(SDA)
- {
- errtime--;
- if(!errtime)
- SCL=0;
- return false;
- }
- SCL=0;
- return true;
- }
- /*******************************************************
- 功能:I2CSendByte
- 描述:向SD2000发送一个字节
- 参数:待发送字节demand,发送顺序指示order
- order=1,从HI-->LO发送8bit数据
- order=0,从LO-->HI发送8bit数据
- 返回:无
- ********************************************************/
- void I2CSendByte(unsigned char demand,bit order)
- {
- unsigned char i=8;
-
- if(order)
- {
- while(i--)
- {
- SCL=0;
- _nop_();
- SDA=(bit)(demand&0x80);
- demand<<=1;
- I2CWait();
- SCL=1;
- I2CWait();
- }
- SCL=0;
- }
- else
- {
- while(i--)
- {
- SCL=0;
- _nop_();
- SDA=(bit)(demand&0x01);
- demand>>=1;
- I2CWait();
- SCL=1;
- I2CWait();
- }
- SCL=0;
- }
- }
- /*******************************************************
- 功能:I2CReceiveByte
- 描述:从SD2000读入一字节
- 参数:无
- 返回:读取的字节I2CReceiveByte
- ********************************************************/
- unsigned char I2CReceiveByte(void)
- {
- unsigned char i=8;
- unsigned char ddata=0;
- SDA=1;
- while(i--)
- {
- ddata>>=1; //数据从低位开始读取
- SCL=0;
- I2CWait();
- SCL=1;
- I2CWait(); //从低位开始 ddata|=SDA;ddata>>=1
- if(SDA)
- {
- ddata|=0x80;
- }
- }
- SCL=0;
- return ddata;
- }
- /*******************************************************
- 功能:读键值
- 描述:
- 参数:
- 返回:键值
- ********************************************************/
- ///*
- unsigned char AipReadKey()
- {
- unsigned char key;
- AiP650_Set(0x4f,0x00);
- if(I2CWaitAck())
- {I2CStart();
- key=I2CReceiveByte();
-
- I2CStop();}
- return key;}//*/
- /*******************************************************
- 功能:发送地址,数据, 数码管显示
- 描述:
- 参数:
- 返回:
- ********************************************************/
- void AiP650_Set(unsigned char add,unsigned char dat) //数码管显示
- {
- //写显存必须从高地址开始写
- I2CStart();
- I2CSendByte(add,1); //第一个显存地址
- I2CSendAck();
- I2CSendByte(dat,1);
- I2CSendAck();
- I2CStop();
- }
- /*******************************************************
- 功能:驱动数码管显示数字
- 描述:显示数字
- 参数:
- 返回:
- ********************************************************/
- void AiP650_DisPlay(unsigned char Dig_Bit,unsigned char Display_num) //显示一位数字
- {
- AiP650_Set(Dig_Bit_Code[Dig_Bit-1],Display_Code[Display_num]);
- }
- /*******************************************************
- 功能:清屏
- 描述:
- 参数:
- 返回:
- ********************************************************/
- void AiP650_CLR() //清屏
- {
- unsigned char i;
- for(i=0;i<4;i++)
- {
- AiP650_Set(Dig_Bit_Code[i],0x00); [/i][i]
- }
- }
- /*******************************************************
- 功能:设置显示亮度
- 描述:
- 参数:
- 返回:
- ********************************************************/
- void Light_Level_Set(unsigned char level)
- {AiP650_Set(0x48,Light_Level_Code[level-1]);}
- /*******************************************************
- 功能:Delay
- 描述:延时子程序
- 参数:延时长度nn
- 返回:无
- ********************************************************/
- /*void Delay(unsigned int nn)
- {
- while(nn--);
- }
- */
- //
- /*****************11us延时函数*************************/
- //
- void delay(uint t)
- {
- for (;t>0;t--);
- }
- //
- //
- /****************DS18B20复位函数************************/
- void ow_reset(void)
- {
- char presence=1;
- while(presence)
- {
- while(presence)
- {
- DQ=1;_nop_();_nop_();//从高拉倒低
- DQ=0;
- delay(50); //550 us
- DQ=1;
- delay(6); //66 us
- presence=DQ; //presence=0 复位成功,继续下一步
- }
- delay(45); //延时500 us
- presence=~DQ;
- }
- DQ=1; //拉高电平
- }
- //
- //
- /****************DS18B20写命令函数************************/
- //向1-WIRE 总线上写1个字节
- void write_byte(uchar val)
- {
- uchar i;
- for(i=8;i>0;i--)
- {
- DQ=1;_nop_();_nop_(); //从高拉倒低
- DQ=0;_nop_();_nop_();_nop_();_nop_(); //5 us
- DQ=val&0x01; //最低位移出
- delay(6); //66 us
- val=val/2; //右移1位
- }
- DQ=1;
- delay(1);
- }
- //
- /****************DS18B20读1字节函数************************/
- //从总线上取1个字节
- uchar read_byte(void)
- {
- uchar i;
- uchar value=0;
- for(i=8;i>0;i--)
- {
- DQ=1;_nop_();_nop_();
- value>>=1;
- DQ=0;_nop_();_nop_();_nop_();_nop_(); //4 us
- DQ=1;_nop_();_nop_();_nop_();_nop_(); //4 us
- if(DQ)value|=0x80;
- delay(6); //66 us
- }
- DQ=1;
- return(value);
- }
- //
- /****************读出温度函数************************/
- //
- read_temp()
- {
- ow_reset(); //总线复位
- delay(200);
- write_byte(0xcc); //发命令
- write_byte(0x44); //发转换命令
- ow_reset();
- delay(1);
- write_byte(0xcc); //发命令
- write_byte(0xbe);
- temp_data[0]=read_byte(); //读温度值的第字节
- temp_data[1]=read_byte(); //读温度值的高字节
- temp=temp_data[1];
- temp<<=8;
- temp=temp|temp_data[0]; // 两字节合成一个整型变量。
- return temp; //返回温度值
- }
- //
- /****************温度数据处理函数************************/
- //二进制高字节的低半字节和低字节的高半字节组成一字节,这个
- //字节的二进制转换为十进制后,就是温度值的百、十、个位值,而剩
- //下的低字节的低半字节转化成十进制后,就是温度值的小数部分
- /********************************************************/
- void work_temp(uint tem)
- {
- uchar n=0;
- if(tem>6348) // 温度值正负判断
- {tem=65536-tem;n=1;} // 负温度求补码,标志位置1
- display[4]=tem&0x0f; // 取小数部分的值
- display[0]=ditab[display[4]]; // 存入小数部分显示值
- display[4]=tem>>4; // 取中间八位,即整数部分的值
- display[3]=display[4]/100; // 取百位数据暂存
- display[1]=display[4]%100; // 取后两位数据暂存
- display[2]=display[1]/10; // 取十位数据暂存
- display[1]=display[1]%10;
- /******************符号位显示判断**************************/
- if(!display[3])
- {
- display[3]=0x0a; //最高位为0时不显示
- if(!display[2])
- {
- display[2]=0x0a; //次高位为0时不显示
- }
- }
- if(n){display[3]=0x0b;} //负温度时最高位显示"-"
- }
- //
- //
- /*************************************************************
- 显示温度
- 功能:温度数值处理,发送650显示
- ***********************************************************/
- void xiashiwendu(uint tem1)
- {
- work_temp(tem1);
- AiP650_CLR();
- Light_Level_Set(4);
- AiP650_DisPlay(2,10);//显示小数点
- AiP650_DisPlay(3,display[2]);//百位
- AiP650_DisPlay(2,display[1]);//显示个位
- AiP650_DisPlay(1,display[0]);//小数
- }
- /******************显示键值*************************************
- 功能:将键值发送650显示
- ****************************************************************/
- void xianshijianzhi(uint key)
- {key=key&0x0a;
-
- Light_Level_Set(4);
-
- AiP650_DisPlay(2,key);
- }
复制代码 |