433和315无线模块的软件编解码遥控程序.docx

上传人:b****5 文档编号:28309030 上传时间:2023-07-10 格式:DOCX 页数:23 大小:21.27KB
下载 相关 举报
433和315无线模块的软件编解码遥控程序.docx_第1页
第1页 / 共23页
433和315无线模块的软件编解码遥控程序.docx_第2页
第2页 / 共23页
433和315无线模块的软件编解码遥控程序.docx_第3页
第3页 / 共23页
433和315无线模块的软件编解码遥控程序.docx_第4页
第4页 / 共23页
433和315无线模块的软件编解码遥控程序.docx_第5页
第5页 / 共23页
点击查看更多>>
下载资源
资源描述

433和315无线模块的软件编解码遥控程序.docx

《433和315无线模块的软件编解码遥控程序.docx》由会员分享,可在线阅读,更多相关《433和315无线模块的软件编解码遥控程序.docx(23页珍藏版)》请在冰豆网上搜索。

433和315无线模块的软件编解码遥控程序.docx

433和315无线模块的软件编解码遥控程序

433和315无线模块的软件编解码遥控程序

1:

单片机软件解码PT2240

2:

选用PIC16F877A作为软件解码芯片

3:

单片机时钟频率选用外部4MHZ晶振

4:

选用外部中断脚作为编码信号脚输入脚

5:

可解PT2240芯片(8脚的学习型编码芯片编码地址位:

2的20次方重复几率100万分之一)

6:

功能有:

遥控器学习(DEMO上的S9作为学习按纽)清除记忆(长按DEMO上的S9即可清除遥控器

地址的记忆)

7:

学习遥控器数量可以设定(可根据EEPROM的大小随便设定)

8:

输出功能(有三路是单击遥控器双稳,可以通过PORTC上的LED可以看到结果.还有一路是双击

遥控器双稳)

9:

可选用315MHZ/433MHZ的超再生/超外差接收模块

/******************************************************************************/

/******************************遥控器接收程序********************************/

/******************************************************************************/

#include

h>

#include

#defineremote_geshu10

/******************************************************************************/

unionBIT_16

intTIMER1_REG;

unsignedcharREG[2];

unionBIT_32

unsignedlongdata_temp_long;

unsignedchardata_temp_byte[4];

/******************************************************************************/

staticunionBIT_16TIMER1_TEMP;//16位定时器1

staticunionBIT_32data_temp;

/******************************************************************************/

staticvolatileunsignedcharrec_status@97;

staticunsignedchardata_cout;//接收的遥控器码位数

staticunsignedchardata;//接收的4位数据

staticunsignedinth_pulse;//高电平宽度

staticunsignedintl_pulse;//低电平宽度

staticunsignedcharremote_cout;//遥控器数量

staticunsignedcharremote_numb;//遥控器编号

/******************************************************************************/

staticunsignedcharTIMER15S1;//清除学习码按键长按时间

staticunsignedcharTIMER15S2;//学习等待时间

staticunsignedcharTIMER15S3;//遥控器数据缓冲时间

staticunsignedcharTIMER15S4;//LED显示时间

staticunsignedcharTIMER15S5;//

staticunsignedcharTIMER15S6;//

staticunsignedcharTIMER15S7;//

staticunsignedcharTIMER15S8;//

/******************************************************************************/

staticbithead@((unsigned)(&rec_status)*8+(0));//同步头标志位

staticbitlearn@((unsigned)(&rec_status)*8+

(1));//学习标志位

staticbitrecieved@((unsigned)(&rec_status)*8+

(2));//接收完成标志位

staticbitremote_button_status@((unsigned)(&rec_status)*8+(3));//遥控器按键标志位

staticbitfirst_click_status@((unsigned)(&rec_status)*8+(4));//遥控器按键单击标志位

/******************************************************************************/

/**********************************数据接收**********************************/

/******************************************************************************/

unsignedchardata_read(void)

{

if(h_pulse〉l_pulse)

if((l_pulse>200)&&(l_pulse〈1000))

if(h_pulse〈(l_pulse〈〈2))return1;//数据为1

}

return2;//无效的数据

elseif(h_pulse

{

if((h_pulse〉200)&&(h_pulse〈1000))

{

if(l_pulse〈(h_pulse〈<2))return0;//数据为0

return2;//无效的数据

/******************************************************************************/

voidclr_head(void)//清除寄存器

{

data_cout=0;

head=0;

}

/******************************************************************************/

#pragmainterrupt_level1

voidcheck_data(void)//检测数据是否正确

{

if(head)

{

switch(data_read())

case0:

(data_temp。

data_temp_long)〈<=1;;data_cout++;break;

case1:

(data_temp。

data_temp_long)〈〈=1;(data_temp。

data_temp_long)++;;data_cout++;break;

default:

clr_head();break;

if(data_cout>23)

INTE=0;

recieved=1;

clr_head();//

}

}

/******************************************************************************/

#pragmainterrupt_level1

voidcheck_head(void)

if((!

head)&&(!

recieved))//

if((h_pulse>300)&&(h_pulse<1000))

{

if((l_pulse〉h_pulse*27)&&(l_pulse

head=1;

}

}

}

}//end******************〉〉

/******************************************************************************/

#pragmainterrupt_level1

voidinterruptlevel_h_l(void)

/*if(RAIF)//如果是电平中断

{PORTA=PORTA;

RAIF=0;//

TIMER1_TEMP。

REG[0]=TMR1L;

TIMER1_TEMP.REG[1]=TMR1H;TMR1H=0;

TMR1L=0;

if(RA4)//如果是低电平中断

{l_pulse=TIMER1_TEMP。

TIMER1_REG;

check_data();

check_head();

}

else//如果是高电平中断

h_pulse=TIMER1_TEMP。

TIMER1_REG;

}

}*/

if(INTF)

INTF=0;

TIMER1_TEMP.REG[0]=TMR1L;

TIMER1_TEMP.REG[1]=TMR1H;

TMR1H=0;

TMR1L=0;

if(INTEDG)//低电平宽度

INTEDG=0;

l_pulse=TIMER1_TEMP。

TIMER1_REG;

check_data();

check_head();

else

INTEDG=1;

h_pulse=TIMER1_TEMP。

TIMER1_REG;}

}

if(T0IF)//

T0IF=0;

TIMER15S1++;

TIMER15S2++;

TIMER15S3++;TIMER15S4++;

TIMER15S5++;

TIMER15S6++;

TIMER15S7++;

TIMER15S8++;

}}

/******************************************************************************/

/*********************************遥控器学习**********************************/

/******************************************************************************/

voidclr_learn_reg(void)

{

unsignedcharn;

di();

for(n=1;n==remote_cout*4;n++)

{

eeprom_write(n,0);

}

eeprom_write(70,0);eeprom_write(71,0);

ei();}

/******************************************************************************/

unsignedcharcompare_data(unsignedchareep_addr)

{

unsignedcharn;

unionBIT_32addr_data;for(n=0;n<4;n++)

addr_data。

data_temp_byte[n]=eeprom_read(eep_addr+n);

}if((data_temp.data_temp_long&0x00fffff0)==(addr_data。

data_temp_long&0x00fffff0)){

return1;//地址匹配返回1

return0;//地址不匹配返回0}

/******************************************************************************/

unsignedcharcompare_all_data(void)

unsignedcharn;

for(n=0;n

{

if(compare_data(n*4+1))//如果有相同的遥控器{

return1;

}

}

return0;//没有一个地址是相同的}

/******************************************************************************/

//读遥控器的数量

voidread_remote_cout(void)

{

remote_cout=eeprom_read(71);//读出已经学习的遥控器总数量

if(remote_cout>20)remote_cout=0;//如果EEPROM是空的则为0}

/******************************************************************************/

voidcheck_learn_pro(void)

unsignedcharn;

if(learn)

learn=0;remote_numb=eeprom_read(70);//读出现在可以覆盖掉哪个遥控器的编号

read_remote_cout();////读遥控器的数量

if(remote_numb〉(remote_geshu-1))remote_numb=0;//如果遥控器的编号已经是最大的了则从小开始

if((remote_cout==0)||!

compare_all_data())//如果还没有遥控器学习或没有相同地址的遥控器学习

{

di();for(n=0;n<4;n++)

{

eeprom_write(remote_numb*4+n+1,data_temp.data_temp_byte[n]);

}remote_numb++;

if(remote_cout

eeprom_write(71,remote_cout);//保存已经学习好的遥控器总数量eeprom_write

(70,remote_numb);//保存已学习的遥控起编号

ei();}

}}

/******************************************************************************/

voidcheck_out_pro(void)

{

read_remote_cout();//读遥控器的数量

if(compare_all_data())

{data=data_temp。

data_temp_byte[0]&0x0f;//

TIMER15S3=0;

TIMER15S4=0;

RC4=1;

}}

/******************************************************************************/

voiddecode_init(void)//接收初始化

OPTION=0x87;

RBPU=0;

TMR0=0;

T0IE=1;//使能定时器0中断INTE=1;

TMR1ON=1;//

PORTC=0x00;//

TRISC=0x00;//

ei();//开放全局中断}

/******************************************************************************/

voidcheck_remote_recieved(void)//检测有无新的数据

if(!

RB1)//

if(TIMER15S1〉30)//是否长按了3秒

learn=0;//

clr_learn_reg();

RC4=0;

else

{learn=1;//

TIMER15S2=0;

TIMER15S4=0;

RC4=1;

}

}

else

{TIMER15S1=0;

if(TIMER15S2>60)

learn=0;//

}

}

if(TIMER15S3>2)//数据保持时间

{

data=0;TIMER15S3=0;

if(TIMER15S4>3)//LED显示时间

RC4=0;

if(recieved)

TIMER15S3=0;

recieved=0;

TIMER15S4=0;

RC4=1;

check_learn_pro();check_out_pro();

INTE=1;}

/******************************************************************************/

/*********************************控制部分程序*******************************/

/******************************************************************************/

voidcontrol_init(void)

{

;}

/******************************************************************************//*********

************************声音部分程序*********************************/

/******************************************************************************/

/******************************************************************************/

unsignedchardelay(unsignedintnus)

{

for(;nus>0;nus--)

{

if(recieved==1)return0;

asm("nop");}}

/******************************************************************************/

unsignedcharsoud_one_fre(unsignedintcout,unsignedintdelay_time)//发音程序

if(recieved==1)return0;

INTE=0;

for(;cout>0;cout--)

RC6=!

RC6;

delay(delay_time);

}RC6=0;

INTE=1;}

/******************************************************************************/

/*********************************急促的声音***********************************/

/******************************************************************************/

unsignedcharsoud_one_fre0(unsignedinttime,unsignedintdelay_time)

{

for(;time>0;time--)

{

if(recieved==1)return0;

soud_one_fre(1000,10);

delay(delay_time);

}}

/******************************************************************************/

/*********************************救护的声音***********************************/

/******************************************************************************/

unsignedcharsoud_tow_fre0(unsignedinttime)//

{

for(;time〉0;time-—)

if(recieved==1)return0;

soud_one_fre(900,10);soud_one_fre(800,30);

}}

/******************************************************************************//*********

***************************低—高音***********************************/

/******************************************************************************/

unsignedcharsoud_many_fre0(unsignedinttime,unsignedintcout)

{

for(;time〉0;time——)

{

unsignedintdelay_time;

for(delay_time=50;delay_time〉10;delay_time-—)

if(recieved==1)return0;soud_one_fre(cout,delay_time);

}

}}

/**********************************************

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 总结汇报 > 其它

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1