#include<regx52.h>
#define smg_P0duanxuan P0
void delay(xms) //@11.0592MHz
{
unsigned char i;
while(xms--)
{
i = 2;
while (--i);
}
i = 2;
while (--i);
}
void smg()//location位选,用到P2口,段选需要用到数组。 别忘了参数的类型需要定义
{
unsigned char i;
unsigned char smg_digit[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x67};
for(i=1;i<=8;i++)
{
switch(i)//位选
{
case 1:P2_4=1;P2_3=1;P2_2=1;break;//case后面需要一个空格,Y8亮
case 2:P2_4=1;P2_3=1;P2_2=0;break;
case 3:P2_4=1;P2_3=0;P2_2=1;break;
case 4:P2_4=1;P2_3=0;P2_2=0;break;
case 5:P2_4=0;P2_3=1;P2_2=1;break;
case 6:P2_4=0;P2_3=1;P2_2=0;break;
case 7:P2_4=0;P2_3=0;P2_2=1;break;
case 8:P2_4=0;P2_3=0;P2_2=0;break;//Y0亮
}
smg_P0duanxuan=smg_digit[i-1];//段选,别忘了段选后需要赋值给P0口
delay(10);
smg_P0duanxuan=0x00;//消影 ,在这个程序中,归零对消影起作用,很明显。
}
}
void main()
{
while(1)
{
smg();
}
}