原创 AVR学习日志(二十)-- 数码管显示拨码开关编码

2010-6-6 20:36 4156 8 8 分类: MCU/ 嵌入式


 


/******************************************************************
//文件名称:Encode_dsy
//功    能:数码管显示拨码开关的值
//作    者:懒猫爱飞
//日    期:2010.05.25
*******************************************************************/
#include<iom8515v.h>
#include<macros.h>


#define uchar unsigned char
#define uint  unsigned int


//宏定义左移,右移函数crol为循环左移,cror为循环右移
#define crol(a,n) a=(a<<n)|(a>>(8-n))
#define cror(a,n) a=(a>>n)|(a<<(8-n))


#define Bit(n) (1<<n)


const uchar Dsy_code_cp[]=
{
 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,
 0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,0xbf,0xff//共阳极0.1.2.3.4.5.6.7.8.9.A.b.C.d.E.F.-
};
const uchar Dsy_index[]=
{
   0x08,0x04,0x02,0x01,0x80,0x40,0x20,0x10  //位选信号
};
uchar Dsy_buf[]=
{
  16,16,16   //数据缓区,初始化时显示“- ”
};


const uchar Dsy_code_cn[]=
{
 0x3f,0x06,0x5b,0x4f,0X66,0x6d,0x7d,0x07,0x7f,
 0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71,0X40,0X00//共阴极0.1.2.3.4.5.6.7.8.9.A.b.C.d.E.F.-
};


uchar Key_code;
/****************************************************************
//函数名称: delay(void)
//功    能:延时
//入口参数:无
//出口参数:无
*****************************************************************/
void delay(void)
{
 uint i;
 for(i=1;i<100;i++)
    ;
}


/****************************************************************
//函数名称:delay_1ms(void)
//功    能:延时1ms
//入口参数:无
//出口参数:无
*****************************************************************/
void delay_1ms(void)//1ms
{
 uint i;
 for(i=1;i<(uint)(8*143-2);i++)
    ;
}
/****************************************************************
//函数名称:delay_ms(uint time)
//功    能:延时time ms
//入口参数:time
//出口参数:无
*****************************************************************/
void delay_ms(uint time)//time*1ms
{
   uint i="0";
   while(i<time)
   {
   delay_1ms();
    i++;
   }
}
/****************************************************************
//函数名称:Port_init(void)
//功    能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void Port_init(void)
{
 DDRA  = 0xff;   //A口输出口,控制数码管
 PORTA = 0xff;
 
 DDRB  = 0x00;         //B口
 PORTB = 0xff;
 
 DDRC  = 0xff;   //C口
 PORTC = 0xff;
 
 DDRD  = 0x00;   //D口高阻状态
 PORTD = 0x00;
}


/****************************************************************
//函数名称:uchar Key_scan(void)
//功    能:读取开关状态
//入口参数:无
//出口参数:无
*****************************************************************/
uchar Key_scan()
{
  if(PINB!=Key_code)
  {
   delay_ms(10);       //延时去抖动
   if(PINB!=Key_code)
   {
    Key_code=PINB;
   }
  }
  return Key_code;
}


/****************************************************************
//函数名称um_dsy(void)
//功    能:显示函数
//入口参数:无
//出口参数:无
*****************************************************************/
void Num_dsy(uchar num)
{
 uchar i,j;
 Dsy_buf[0]=num/100; //求出百位
 Dsy_buf[1]=num/10%10; //求出十位
 Dsy_buf[2]=num%10;  //求出个位
 for(i=0;i<3;i++)
 {
  PORTA="Dsy"_code_cn[Dsy_buf];
  PORTC=~Dsy_index[3-i];
  delay_ms(5);
  PORTC="0xff";
 }
 
}
/****************************************************************
//函数名称:main(void)
//功    能:主程序
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
 //uchar dsy_num;
 Port_init();
 PORTC=0xef;
 while(1)
 {
  //#define num
  #ifdef num
   dsy_num=123;//用于测试显示函数
  #endif
  //dsy_num=Key_scan();//直接调用函数,就不用中间值了
  Num_dsy(Key_scan());//(dsy_num);
 }
}


 


每天进步一点点,开心多一点^_^


 

文章评论0条评论)

登录后参与讨论
我要评论
0
8
关闭 站长推荐上一条 /2 下一条