七段數(shù)碼管顯示四位數(shù)字
#include
//#include
unsigned char a,b,c,d;
unsigned char code dispbitcode[]={0x10,0x20,0x40,0x80,0x00};//共陰位碼
unsigned char code dispcode[]= { 0X3F,/*0*/
0X06,/*1*/
0X5B,/*2*/
0X4F,/*3*/
0X66,/*4*/
0X6D,/*5*/
0X7D,/*6*/
0X07,/*7*/
0X7F,/*8*/
0X6F,/*9*/};//共陰段碼
/*************延時(shí)子程序*******************************/
void delay(unsigned int x)//最小1毫秒
{
unsigned char j;
while(x--)
{
for(j=0;j<125;j++)
{;}
}
}
/***************顯示子程序**********************/
void display(unsigned char qian,unsigned char bai,unsigned char shi,unsigned char ge)
{
P3=dispbitcode[0];
P0=dispcode[qian]; //顯示千位
delay(5);
//P3=dispbitcode[5];
//P2=dispcode[11];
P3=dispbitcode[1];
P0=dispcode[bai]; //顯示佰位
delay(5);
//P3=dispbitcode[5];
//P2=dispcode[11];
P3=dispbitcode[2];
P0=dispcode[shi]; //顯示十位
delay(5);
//P3=dispbitcode[5];
//P2=dispcode[11];
P3=dispbitcode[3];
P0=dispcode[ge]; //顯示個(gè)位
delay(5);
}
void main(void)
{
while(1)
{
unsigned int abcd=1024; //一定要注意數(shù)據(jù)類型之前我一直用的是char(0^225)導(dǎo)致千位無法顯示
a=abcd/1000;//送去顯示
b=abcd%1000/100;
c=abcd%1000%100/10;
d=abcd%1000%100%10;
display(a,b,c,d);
}
}
仿真電路:
評(píng)論