nrf_2.4g通信
stm32单片机源程序如下:
- #include <stm32f10x_lib.h>
- #include "sys.h"
- #include "usart.h"
- #include "delay.h"
- #include "led.h"
- #include "NRF24l01.h"
- #include "key.h"
-
- int main(void)
- {
-
- u8 Tx_Buf1[]={1}; //要发送的数据 1
- u8 Rx_Buf[32]; //接收到的数据 最多32字节
- u8 key=0;
- Stm32_Clock_Init(9);//系统时钟设置
- delay_init(72); //延时初始化
- uart_init(72,9600); //串口1初始化
-
- KEY_Init(); //按键初始化
- LED_Init(); //LED初始化
- NRF24L01_Init(); //初始化NRF24L01
-
- while(NRF24L01_Check())//检测不到24L01
- {
-
- delay_ms(300);
- LED0=!LED0;//DS0闪烁
- LED1=!LED1;//DS1闪烁
- }
- //初始 DS1熄灭
- LED1=1;//
- while(1)
- {
-
- RX_Mode();//接收模式
- while(NRF24L01_RxPacket(Rx_Buf))//等待接收数据 ,返回0则接收到数据 ,在等待接收数据期间,可以随时变成发送模式
- {
- key=KEY_Scan();
- if(key==1) //按了KEY0 则变成发送模式,发送对应数据,发送完后变成接收模式
- {
- TX_Mode(); //发送模式
- NRF24L01_TxPacket(Tx_Buf1); // 发送命令数据
- LED1=0;
- delay_ms(300);
- LED1=1;
- delay_ms(300); //发送后LED1闪一下
- break; //退出最近的循环,从而变回接收模式,这句关键
- }
- }
- if(Rx_Buf[0]==1) //若接收到对应的数据则实现对应功能
- {
- Rx_Buf[0]=0;//清空数据
- LED1=0;
- delay_ms(300);
- LED1=1;
- delay_ms(300);//接收到数据 后闪烁
- }
- }
-
- }
- ……………………
- …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码
51单片机源程序如下:
- #include<reg51.h>
- #include"2401.h"
- #define uint unsigned int
- #define uchar unsigned char
- sbit KEY8=P3^7; //发送按键
- sbit beep=P2^3;//喇叭
- sbit LED6=P1^6; ////接收到数据后的功能实现灯
- void delay_ms(uint z) //延时函数
- {
- uint x,y;
- for(x=z;x>0;x--)
- for(y=110;y>0;y--);
- }
- void delayms(unsigned int x)
- {
- unsigned int i;
- while(x--)
- for(i=125;i>0;i--);
- }
- void main()
- {
- uchar Tx_Buf1[]={1};//发送的信息1
- uchar Rx_Buf[32]; //接收到的数据暂存器,最多32字节数据
- init_NRF24L01();
- LED6=1;//初始灯6熄灭
- while(NRF24L01_Check()) //检查不到24l01则报警
- {
- beep=0;
- delayms(200);
- beep=1;
- delayms(200);
- }
- while(1)
- {
- RX_Mode();//接收模式
- while(!nRF24L01_RxPacket(Rx_Buf)) //等待接收数据 ,返回1则接收到数据 ,在等待接收数据期间,可以随时变成发送模式
- {
- if(KEY8==0) //按了按键8 则变成发送模式,发送对应数据,发送完后变成接收模式
- {
- delay_ms(5);//消抖动
- if(KEY8==0)
- {
- while(!KEY8);
- TX_Mode(); //发送模式
- nRF24L01_TxPacket(Tx_Buf1); // 发送命令数据
- LED6=0;
- delay_ms(300);
- LED6=1;
- delay_ms(300); //发送后LED6闪一下
- break; //退出最近的循环,从而变回接收模式,这句关键
- }
-
- }
- }
- if(Rx_Buf[0]==1) //若接收到对应的数据则实现对应功能
- {
- Rx_Buf[0]=0;//清空数据
- ……………………
- …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码
所有资料51hei提供下载:
NRF24l01实时双向通信(stm32与51).zip
(1.06 MB, 下载次数: 589)
|