您的位置 首页 动态

51单片机红外遥控点阵贪食蛇程序

完整的源码和制作资料下载:http:www51heicombbsdpj-20623-1html****************工程包含的头文件*************************inc


完好的源码和制造材料下载:http://www.51hei.com/bbs/dpj-20623-1.html

/****************工程包括的头文件*************************/
#include
#include
#include”define.h”
#include”delay.h”
#include”zm.h”
#include”32x12matrix.h”
#include”menu.h”
#include”MySnake.h”
#include”ds1302.h”
#include”ds18b20.h”
#include”i2c.h”
#include”radio.h”
#include”ir.h”

/*———————————————————
函数功用:Timer0初始化
调用方式:Timer0_Init();
参数:无
补白:用于发生具有随机性质的贪食蛇游戏食物的坐标方位
———————————————————*/
void Timer0_Init()
{
TMOD|=0x02;//重装初值计数方式,TL0:0->255
IE|=0X82;
TH0=0;
TL0=0;
TR0=1;//敞开内部Timer0
}

/*———————————————————
函数功用:ExtInt1初始化
调用方式:ExtInt1_Init();
参数:无
返回值:无
补白:下降沿
———————————————————*/
void ExtInt1_Init(void)
{
IT1=1;
EA=1;
EX1=1;
}

/*———————————————————
函数功用:主函数
调用方式:无
参数:无
返回值:无
修正时刻:13.4.17
补白:无

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/news/dongtai/318226.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部