[mw_shl_code=c,true]代码发的不好看 重发一下 不过上面的也将就
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit Led = P1^1;
void delayms(uint xms)
{
uint i,j;
for(i=xms;i>0;i--)
for(j=110;j>0;j--);
}
void send(uchar num_key)
{
SBUF = num_key;
while(!TI);
TI =0 ;
Led = !Led ;
//while(1);
}
void main()
{
TMOD = 0x20;
TH1=0xfd;
TL1 =0xfd;
TR1 =1;
SM0 =0;
SM1 =1;
EA=1;
ES=1;
while(1)
{
delayms(2000);
send(0xaa);
}
} [/mw_shl_code]
[mw_shl_code=c,true]/*sender*/
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
void delayms(uint xms)
{
uint i,j;
for(i=xms;i>0;i--)
for(j=110;j>0;j--);
}
void send(uchar num_key)
{
SBUF = num_key;
while(!TI);
TI =0 ;
}
void keyscan()
{
uchar temp,num;
P3 = 0xfe;
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
delayms(5);
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
temp=P3;
switch(temp)
{
case 0xee:num=0;
break;
case 0xde:num=1;
break;
case 0xbe:num=3;
break;
case 0x7e:num=4;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
send(num);
}
}
P3=0xfd;
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
delayms(5);
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
temp=P3;
switch(temp)
{
case 0xed:num=5;
break;
case 0xdd:num=6;
break;
case 0xbd:num=7;
break;
case 0x7d:num=8;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
send(num);
}
}
P3=0xfb;
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
delayms(5);
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
temp=P3;
switch(temp)
{
case 0xeb:num=9;
break;
case 0xdb:num=10;
break;
case 0xbb:num=11;
break;
case 0x7b:num=12;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
send(num);
}
}
P3=0xf7;
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
delayms(5);
temp=P3;
temp=temp&0xf0;
if(temp!=0xf0)
{
temp=P3;
switch(temp)
{
case 0xe7:num=13;
break;
case 0xd7:num=14;
break;
case 0xb7:num=15;
break;
case 0x77:num=16;
break;
}
while(temp!=0xf0)
{
temp=P3;
temp=temp&0xf0;
}
send(num);
}
}
}
void main()
{
TMOD = 0x20;
TH1=0xfd;
TL1 =0xfd;
TR1 =1;
SM0 =0;
SM1 =1;
EA=1;
ES=1;
while(1)
{
keyscan();
}
} [/mw_shl_code]
[mw_shl_code=c,true]#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
/**receiver**/
sbit dula=P2^6;
sbit wela =P2^7;
uint i;
uchar a=5;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71
};
void display(uchar num) //显示数码管字符
{
P0=table[num];
dula =1;
dula =0;
}
void main()
{
P1=0xaa;
TMOD =0x20;//定时器1 的工作方式2
TH1=0xfd;
TL1=0xfd;
TR1=1;
REN =1; //SCON register
SM0=0;
SM1= 1;
EA=1;
ES=1;
P0=0xc0;
wela=1;
wela=0;
while(1);
}
void ser() interrupt 4
{
while(RI==0);
RI=0;
a=SBUF;
display(a);
}[/mw_shl_code]
|