接收:当单独按下学习/发送键时,进入学习状态,按下遥控上的某个键,若接收完毕,指示灯闪一下,再按下这个键,当再次接收完毕时,判断与之间接收的数据是否一致,一致则指示灯闪一下,学习完成。
<IGNORE_JS_OP>
#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
sbit ir=P3^3;//红外接收端口
sbit D2=P2^5;
bit d2_flag=0;
bit keyflag0=0;
sbit keytemp0=P2^0;//学习/发射键
uchar key_code=0;//遥控键值
uint buf_key_code=0,key_code_1=0,key_code_2=0;//键值暂存
uchar key_bit_count=0;//键编码脉冲计数
uint count=0;//定时中断次数计数
uint buf_count=0;//定时中断计数暂存
uchar common_code_count=0;//前导码脉冲计数
uchar ir_status=0;//脉冲接收器所处的状态,0:无信号,1:系统码接收区,2:数据编码接收区
void delay_10us(unsigned char a)///延时子程序10us
{
unsigned char b;
for(b=a;b>0;b--);
}
void delay(uint z)//延时1ms,晶振12M
{
uint x,y;
for(x=z;x>0;x--)
for(y=199;y>0;y--);
}
/***********************************************
定时器中断
***********************************************/
void time1() interrupt 3///定时器中断
{
count++;//定时器中断次数累加
}
/**********************************************
外部中断,红外解码程序
**********************************************/
void int1() interrupt 2//外部中断
{
TR1=1;//开定时器中断
if(count>12&&count<270)//如果信号合法,则放入buf_count,count清0,对下一个脉冲信号计时
{
buf_count=count;
count=0;
}
delay_10us(10);//延时100us以消除下降沿跳变抖动
if(ir==0)//INT1引脚稳定为低电平,则表法确实是信号,count重新计时,因上面延时了100us,故要补偿1次TO中断
{
count=2;
}
if(buf_count>12&&buf_count<270)//若收到的信号合法,则再进行信号分析(0.6-13.5ms)
{
if(ir_status==0)//如果之前未收到引导码
{
if(buf_count>210&&buf_count<270)//判断是否引导码13.5ms(10.5-13.5ms)
{
ir_status=1;//系统标记
buf_count=0;//
}
}
else if(ir_status==1)///收到引导码
{
if(common_code_count>=15)//若收完16个脉冲
{
ir_status=2;//数据解码标记
common_code_count=0;//系统码计算清零
buf_count=0;//中断计数暂存清0
}
else if((buf_count>40&&buf_count<70)||(buf_count>12&&buf_count<32))//(2-3.5ms即1 或 0.6-1.6ms即0)
{
buf_count=0;
common_code_count++;//每收到一个信号自加1
}
}
else if(ir_status==2)//进入数据编码接收
{
if(key_bit_count<8)//收到数据少于8位,则将收到的数据写入buf_key_code
{
if(buf_count>40&&buf_count<70)//收到1
{
buf_count=0;
buf_key_code>>=1;
buf_key_code|=0x80;//收到1
key_bit_count++;//数据脉冲累加
}
else if(buf_count>12&&buf_count<32)//收到0
{
buf_count=0;
buf_key_code>>=1;//收到0
key_bit_count++;
}
}
else //若收完8位数据则做以下处理
{
ir_status=0;//接收状态返回到空闲
key_bit_count=0;
buf_count=0;
TR1=0;
if(d2_flag==0)
{
D2=0;
delay(800);
D2=1;
d2_flag=1;
key_code_1=buf_key_code;
buf_key_code=0;
}
else
{
key_code_2=buf_key_code;
if(key_code_1==key_code_2)
{
D2=0;
delay(800);
D2=1;
key_code=key_code_2;
}
d2_flag=0;
buf_key_code=0;
}
}
}
}
}
/*************************************
主程序
*************************************/
void main()
{
ir=1; //红外接收端口写1(低电平开始接收)
EA=1; //开总中断
TMOD=0x20; //定时器1,模式2,8位自动装载模式
TH1=0XCE; //定时50us(12晶振)
TL1=0XCE;
keytemp0=1;
if(keytemp0==0)
{
delay(20);
keytemp0=1;
if(keytemp0==0)
{
keyflag0=1;//学习/发射键 有按键标志
}
}
if(keyflag0)
{
IT1=1; //INT1下降沿触发
ET1=1; //允许定时器中断
EX1=1; //允许外部中断
while(1);
}
}