单片机红外解码lcd显示 红外接收头是HS0038
第一个是在串口调试助手上显示的可以显示出来
第二个在lcd上显示不能显示出来,不知道为什么呀,有没有大神帮助一下呀
串口这个是可以的
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit HY=P3^3;
uchar HY_code[4]; //数据存储
uint HY_getlow()
{
TH0=0;
TL0=0;
TR0=1;
while(!HY&&(TH0&0x80)==0);
TR0=0;
return (TH0*256+TL0);
}
uint HY_gethigh() //每加一个数的时间是一个时钟周期
{ //时间为temp乘以1.085us
TH0=0;
TL0=0;
TR0=1;
while(HY&&(TH0&0x80)==0);
TR0=0;
return (TH0*256+TL0);
}
void uart_init()
{
TMOD=0x21;
SM0=0;
SM1=1;
TH1=0xfd;
TL1=0xfd;
TR1=1;
}
void uart_send(uchar dat)
{
SBUF=dat;
while(
ti==0); //等待数据发送完成
TI=0;
}
void main()
{
uint temp;
uchar i,j;
uart_init();
while(1)
{
start:
while(HY);
temp=HY_getlow(); //检测9ms的起始码 低电平
if((temp<7833)||(temp>8755)) // 8500-9500us
goto start;
temp=HY_gethigh(); //检测4.5的结束码 高电平
if((temp<3686)||(temp>4608)) //4000-5000us
goto start;
for(i=0;i<4;i++)
{
for(j=0;j<8;j++)
{
temp=HY_getlow();
if((temp<184)||(temp>737)) //200-800us
goto start;
temp=HY_gethigh();
if((temp<184)||(temp>1843)) //200-2000us
goto start;
HY_code[i]=HY_code[i]>>1;
if(temp>1032) //1120us
HY_code[i]=HY_code[i]|0x80;
}
}
uart_send(HY_code[0]);
uart_send(HY_code[1]);
uart_send(HY_code[2]);
uart_send(HY_code[3]);
}
}
但是lcd的不知道为什么显示不出来呀?求指教呀
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit HY=P3^3;
sbit lcdrs=P2^5;
sbit lcdrw=P2^6;
sbit lcden=P2^7;
uchar temp_code[2];
uchar LCD_ID_1[16] = {"Red Control"};
uchar LCD_ID_2[16] = {"IR CODE:--H"};
uchar HY_code[4]; //数据存储
uint HY_getlow()
{
TH0=0;
TL0=0;
TR0=1;
while(!HY&&(TH0&0x80)==0);
TR0=0;
return (TH0*256+TL0);
}
uint HY_gethigh() //每加一个数的时间是一个时钟周期
{ //时间为temp乘以1.085us
TH0=0;
TL0=0;
TR0=1;
while(HY&&(TH0&0x80)==0);
TR0=0;
return (TH0*256+TL0);
}
void delay1(uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
void write_com(uchar com)
{
lcdrw=0;
lcdrs=0;
lcden=0;
P0=com;
delay1(5);
lcden=1;
delay1(5);
lcden=0;
}
void write_date(uchar date)
{
lcdrw=0;
lcdrs=1;
lcden=0;
P0=date;
delay1(5);
lcden=1;
delay1(5);
lcden=0;
}
void lcd_init()
{
uchar i;
lcden=0;
write_com(0x38);
write_com(0x0c);
write_com(0x06);
write_com(0x01);
write_com(0x80);
for(i=0;i<11;i++)
{
write_date(LCD_ID_1[i]);
}
write_com(0x80+0x40);
for(i=0;i<11;i++)
{
write_date(LCD_ID_2[i]);
}
}
void main()
{
uint temp;
uchar i,j;
lcd_init();
while(1)
{
start:
while(HY);
temp=HY_getlow(); //检测9ms的起始码 低电平
if((temp<7833)||(temp>8755)) // 8500-9500us
goto start;
temp=HY_gethigh(); //检测4.5的结束码 高电平
if((temp<3686)||(temp>4608)) //4000-5000us
goto start;
for(i=0;i<4;i++)
{
for(j=0;j<8;j++)
{
temp=HY_getlow();
if((temp<184)||(temp>737)) //200-800us
goto start;
temp=HY_gethigh();
if((temp<184)||(temp>1843)) //200-2000us
goto start;
HY_code[i]=HY_code[i]>>1;
if(temp>1032) //1120us
HY_code[i]=HY_code[i]|0x80;
}
}
temp_code[0]=HY_code[2]&0x0f;
temp_code[1]=HY_code[2]>>4;
if(temp_code[0]>9)
{temp_code[0]=temp_code[0]+0x37;}
else
{temp_code[0]=temp_code[0]+0x30;}
if(temp_code[1]>9)
{temp_code[1]=temp_code[1]+0x37;}
else
{temp_code[1]=temp_code[1]+0x30;}
write_com(0x80+0x40+8);
write_date(temp_code[1]);
write_date(temp_code[0]);
}
}
一周热门 更多>