资 源 简 介
#include
#define uchar unsigned char
#define uint unsigned int
uint i,j;
sbit dula=P2^6;
sbit wela=P2^7;
uchar code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,
0x7d,0x07,0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71};
void main()
{
j=0;
i=0;
TMOD=0X01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%6;
EA=1;
ET0=1;
TR0=1;
while(1);
}
void time0() interrupt 1
{
TH0=(65536-50000)/256;
TL0=(65536-50000)%6;
i++;
if(i==15)
{
P0=table[j];
dula=1;
dula=0;
P0=0XC0;
wela=1;
wela=0;
j++;
i=0;
if(j==16)
{
j=0;
}
}
}