- 1、本文档共60页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
温州大学瓯江学院本科毕业论文
PAGE II
毕业设计(论文)
题 目:基于nRF24l01的无线音乐播放器设计
本科毕业论文
摘 要
本文介绍了一种基于nRF24l01的无线音乐播放器设计方案。本设计方案结合了单片机技术和无线通信技术,设计的电路以单片机和无线通信模块为核心,并辅以外围电路。其工作过程是按键选择后,通过无线模块发射相应的数据,由另一无线模块接收的数据后播放不同的音乐。该系统实现了无线控制音乐播放器的歌曲播放选择和歌曲名的显示。本系统的优点是电路简单,性能可靠,实时性好,操作简单,编程容易等。
关键词:单片机;无线模块nRF24l01;模拟SPI
PAGE III
温州大学瓯江学院本科毕业论文
Abstract
This article introduced one kind based on the nRF24l01 wireless music player design proposal. The design proposal unified the monolithic integrated circuit technology and the wireless communication technology, the design electric circuit take the monolithic integrated circuit and the wireless communication module as a core, and auxiliary by peripheral circuit. After its work process is the pressed key choice, through wireless module launch corresponding data, after another wireless module receive data broadcasts the different music. This system has realized the wireless control music player song broadcast choice and a song demonstration. This systems merit is the electric circuit is simple, the perform reliably, timeliness is good, simplicity of operator, programming easy and so on
Key Words:single chip microcomputer; wireless module nRF24l01;simulation SPI
本科毕业论文
55 -
目 录
TOC \o 1-2 \t 标题 3,2 \h \u
#define uint unsigned int
#define uchar unsigned char
#define TX_ADR_WIDTH 5 // 5 字节 TX(RX) 地址宽度
#define TX_PLOAD_WIDTH 1 // 1字节发送数据宽度
uchar const TX_ADDRESS[TX_ADR_WIDTH] = {0x34,0x43,0x10,0x10,0x01}; // 定义一个静态发送地址 TX_address
uchar rx_buf[TX_PLOAD_WIDTH];
uchar tx_buf[TX_PLOAD_WIDTH]={0x00};
/***************************nrf24l01管脚设置********************************/
sbit CE = P1^0;
sbit SCK= P1^1;
sbit MISO= P1^2;
sbit IRQ = P1^3;
sbit MOSI= P1^4;
sbit CSN= P1^5;
/******************状态标志********************************/
uchar bdata sta;
sbit RX_DR =sta^6;
sbit TX_DS =sta^5;
sbit MAX_RT =sta^4;
/**************************************************/
/*功能描述
芯片使能(准备发送或接收模式)****************/
/*************************************
文档评论(0)