想要更多项目私wo!!!
一、电路设计
此电路由AT89C51最小系统、lcd1206、串口通信和流水灯等组成。
按动按键实现双机通信。
二、运行结果图
三、部分代码
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
uchar code table[]={
0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
uchar count = 0,a,b,num=0;
void delay(uint z)
{
uint i,j;
for(i=z;i>0;i--)
for(j=110;j>0;j--);
}
void put(uchar c)
{
SBUF=c;
while(!TI);
TI=0;
}
void init()
{
TMOD=0x20;
TH1=0XFD;
TL1=0XFD;
SCON=0X50;
TR1=1;
EA=1;
ES=1;
EX0 = 1;
IT0 = 1;
ET0 = 1;
TH0=(65536-46483)/256;
TL0=(65536-46483)%256;
}
void main()
{
P2=0x00;
b = 0xff;
init();
while(1)
{
delay(100);
}
}
void ser() interrupt 4
{
if(RI==1)
{
a=SBUF;
RI=0;
b = a % 9;
P2=table[b];
}
}
void T0_interserve(void) interrupt 1 using 1
{
num++;
if(num > 9)
{
num = 1;
b = 0xff;
}
P2=table[num-1];
b=b << 1;
P1 = b;
delay(500);
TH0=(65536-46083)/256;
TL0=(65536-46083)%256;
}
void EX_INT0() interrupt 0
{
count ++;
if(count == 1)
{
put('A');
TR0=1; // Æô¶¯¶¨Ê±Æ÷
}
else if(count == 2)
{
put('B');
TR0=0;
}
else if(count == 3)
{
put('C');
TR0=0;
P2=0x00;
P1=0XFF;
}
else
{
count = 0;
}
}