51/AVR单片机技术驿站!  <在线翻译>     便利工具    特色网址   无弹窗、无插件的绿色站点...  英才招聘   学历查询  喜欢>>收藏我站 

当前位置:首页 > 单片机技术文章 > PIC单片机 > 详细内容
pic单片机软件解码PT2240
发布时间:2009/7/20  阅读次数:789  字体大小: 【】 【】【

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的饿超再生/超外差接收模块


/******************************************************************************/
/****************************** 遥控器接收程序 ********************************/
/******************************************************************************/
#i nclude <pic.h>
#i nclude <pic1687x.h>
#define remote_geshu 10
/******************************************************************************/
union BIT_16
{
   int TIMER1_REG;
   unsigned char REG[2];
}
union BIT_32
{
   unsigned long data_temp_long;
   unsigned char data_temp_byte[4];
}
/******************************************************************************/
static union BIT_16 TIMER1_TEMP;//16位定时器1
static union BIT_32 data_temp;
/******************************************************************************/
static volatile unsigned char rec_status @ 97;
static unsigned char data_cout;//接收的遥控器码位数
static unsigned char data;//接收的4位数据
static unsigned int h_pulse;//高电平宽度
static unsigned int l_pulse;//低电平宽度
static unsigned char remote_cout;//遥控器数量
static unsigned char remote_numb;//遥控器编号
/******************************************************************************/
static unsigned char TIMER15S1;//清除学习码按键长按时间
static unsigned char TIMER15S2;//学习等待时间
static unsigned char TIMER15S3;//遥控器数据缓冲时间
static unsigned char TIMER15S4;//LED显示时间
static unsigned char TIMER15S5;//
static unsigned char TIMER15S6;//
static unsigned char TIMER15S7;//
static unsigned char TIMER15S8;//
/******************************************************************************/
static bit head @ ((unsigned)(&rec_status)*8+(0));//同步头标志位
static bit learn @((unsigned)(&rec_status)*8+(1));//学习标志位
static bit recieved @((unsigned)(&rec_status)*8+(2));//接收完成标志位
static bit remote_button_status @((unsigned)(&rec_status)*8+(3));//遥控器按键标志位
static bit first_click_status @((unsigned)(&rec_status)*8+(4));//遥控器按键单击标志位

/******************************************************************************/
/********************************** 数据接收 **********************************/
/******************************************************************************/
unsigned char data_read(void)
{
    if(h_pulse>l_pulse)
     {
      if((l_pulse>200)&&(l_pulse<1000))
         {
          if(h_pulse<(l_pulse<<2))return 1;//数据为1
         }
      return 2;//无效的数据
     }
    else if(h_pulse<l_pulse)
     {
      if((h_pulse>200)&&(h_pulse<1000))
         {
          if(l_pulse<(h_pulse<<2))return 0;//数据为0
         }
      return 2;//无效的数据
     }
}
/******************************************************************************/
void clr_head(void)//清除寄存器
{
    data_cout=0;
    head=0;    
}
/******************************************************************************/
#pragma interrupt_level 1
void check_data(void)//检测数据是否正确
{
    if(head)
     {
      switch(data_read())

  {
          case 0:(data_temp.data_temp_long)<<=1;;data_cout++;break;
          case 1:(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();//
         
         }
     }
}
/******************************************************************************/
#pragma interrupt_level 1
void check_head(void)
{
    if((!head)&&(!recieved))//
     {
      if((h_pulse>300)&&(h_pulse<1000))
         {
          if((l_pulse>h_pulse*27)&&(l_pulse<h_pulse*35))
           {
              head=1;
           }
         }
     
     }
}

我要评论
  • 匿名发表
  • [添加到收藏夹]
  • 发表评论:(匿名发表无需登录,已登录用户可直接发表。) 登录状态:未登录
最新评论
所有评论[0]
    暂无已审核评论!

网站导航 管理登陆 ┊ 免责声明 问题反馈  友链说明
本站部分内容来自网络共享资源,如有冒犯您的权利请来信告之删除或纠正!
不得对本站进行复制、盗链或镜像,转载内容须获得同意或授权;欢迎友情链接、站务合作!

    我要报警 Alexa
 mcusy_cn#126.com (请把#改成@) 交流:522422171
本站学习交流群:138..158(高级群1-)、77930286(高级群2)、61804809(群3)
Copyright© MCUSY All Rights Reserved
本站网警备案号: WZ36040002485
  ICP备案证书号:粤ICP备09034963号