nRF24L01使用指南以及步骤解说
带Arduino的2.4GHz射频收发器模块
这篇文章旨在成为nRF24L01 – 2.4GHz RF收发器模块的完备指南。我将表明它的作用,展现其规格并分享一个Arduino项目示例,您可以将其使用到本人的项目中。
形貌
这些RF模块在Arduino喜好者中十分受接待。nRF24L01可用于必要无线控制的种种使用中。它们是收发器,这意味着每个模块都可以发送和吸收数据。
这些模块十分便宜,您可以将它们与任何微控制器(MCU)一同使用。
规格nRF24L01 – 2.4GHz射频收发器
· 低本钱单芯片2.4GHz GFSK RF收发器IC
· 带天线的范围:250Kb速率(开放地区)> 1000米
· 功率:超低功耗
· 输入电压:3.3V
· 引脚:耐5V
何处可以够买这个
您只需破费几块钱即可置办这些模块。 很多店肆都有,你可以找到最优惠的价格。它们有两个版本,带有外部天线(更大范围)或内置天线(较小范围)。
带有nRF24L01的Arduino
您必要以下组件来制造此示例:
· 2个Arduino
· 2个nRF24L01 – 2.4GHz射频收发器
· 面包板
材料下载
底下是此项目所需的库,必要自行下载:
1. 下载RadioHead库
2. 解紧缩RadioHead库
3. 在您的Arduino IDE中安装RadioHead库
4. 重新启动您的Arduino IDE
RadioHead库十分不错,它可以与市场上几乎一切的RF模块一同使用。
引脚分列
NRF24L01的顶视图
客户端电路
紧张: 输入电压为1.9V?3.6V,请勿凌驾此电压,不然会烧毁模块。
依照上述电路搭建您的客户端。然后上传以下代码,这些代码可以在Arduino IDE中找到(安装RadioHead库之后)。
转到文件>示例> RadioHead> nrf24> nrf24_client。
// nrf24_client
#include <SPI.h>
#include <RH_NRF24.h>
// Singleton instance of the radio driver
RH_NRF24 nrf24;
// RH_NRF24 nrf24(8, 7); // use this to be electrically compatible with Mirf
// RH_NRF24 nrf24(8, 10);// For Leonardo, need explicit SS pin
// RH_NRF24 nrf24(8, 7); // For RFM73 on Anarduino Mini
void setup()
{
Serial.begin(9600);
while (!Serial)
; // wait for serial port to connect. Needed for Leonardo only
if (!nrf24.init())
Serial.println("init failed");
// Defaults after init are 2.402 GHz (channel 2), 2Mbps, 0dBm
if (!nrf24.setChannel(1))
Serial.println("setChannel failed");
if (!nrf24.setRF(RH_NRF24::DataRate2Mbps, RH_NRF24::TransmitPower0dBm))
Serial.println("setRF failed");
}
void loop()
{
Serial.println("Sending to nrf24_server");
// Send a message to nrf24_server
uint8_t data[] = "Hello World!";
nrf24.send(data, sizeof(data));
nrf24.waitPacketSent();
// Now wait for a reply
uint8_t buf[RH_NRF24_MAX_MESSAGE_LEN];
uint8_t len = sizeof(buf);
if (nrf24.waitAvailableTimeout(500))
{
// Should be a reply message for us now
if (nrf24.recv(buf, &len))
{
Serial.print("got reply: ");
Serial.println((char*)buf);
}
else
{
Serial.println("recv failed");
}
}
else
{
Serial.println("No reply, is nrf24_server running?");
}
delay(400);
}
办事器电路
紧张: 输入电压为1.9V?3.6V,请勿凌驾此电压,不然会烧毁模块。
请依照上述办事器电路搭建,举行利用。然后上传以下代码,这些代码可以在Arduino IDE中找到(安装RadioHead库之后)。
转到文件>示例> RadioHead> nrf24> nrf24_server。
// nrf24_server
#include <SPI.h>
#include <RH_NRF24.h>
// Singleton instance of the radio driver
RH_NRF24 nrf24;
// RH_NRF24 nrf24(8, 7); // use this to be electrically compatible with Mirf
// RH_NRF24 nrf24(8, 10);// For Leonardo, need explicit SS pin
// RH_NRF24 nrf24(8, 7); // For RFM73 on Anarduino Mini
void setup()
{
Serial.begin(9600);
while (!Serial)
; // wait for serial port to connect. Needed for Leonardo only
if (!nrf24.init())
Serial.println("init failed");
// Defaults after init are 2.402 GHz (channel 2), 2Mbps, 0dBm
if (!nrf24.setChannel(1))
Serial.println("setChannel failed");
if (!nrf24.setRF(RH_NRF24::DataRate2Mbps, RH_NRF24::TransmitPower0dBm))
Serial.println("setRF failed");
}
void loop()
{
if (nrf24.available())
{
// Should be a message for us now
uint8_t buf[RH_NRF24_MAX_MESSAGE_LEN];
uint8_t len = sizeof(buf);
if (nrf24.recv(buf, &len))
{
// NRF24::printBuffer("request: ", buf, len);
Serial.print("got request: ");
Serial.println((char*)buf);
// Send a reply
uint8_t data[] = "And hello back to you";
nrf24.send(data, sizeof(data));
nrf24.waitPacketSent();
Serial.println("Sent a reply");
}
else
{
Serial.println("recv failed");
}
}
}
树模
在此项目中,客户正在发送一条消息" Hello World!"。经过RF发送到办事器,办事器正在发送以下消息"向您问好"。这些消息将表如今串行监督器中。这是您应该在串行终端窗口中看到的内容(请参见下图)。
注意:在左侧窗口中,我正在与PuTTY.org创建串行通讯。在右侧窗口中,我正在使用Arduino IDE串行监督器。
写在最初
使用此模块时,您必要有一些实际的希冀。当吸收器和发射器十分接近时,它们可以很好地事情。假如将它们分开太远,则会丢失通讯。通讯范围会有所不同。这取决于情况中的噪声,对否有停滞物以及对否使用外部天线。
渴望本指南对您有所协助。也渴望喜好电子产物的伙伴分享这篇文章!