简介:
在本篇中,我们主要介绍如何使用 NRF24L01 和 Arduino 控制舵机。我们在发送端移动到此杆,使用 NRF24L01,将发送接收文章的移动杆移动值的侧,然后在接收侧接收该值,使用值移动舵机。
物料清单:
● Arduino开发板
● NRF24L01模块
● 有害处模块
● 舵机一个
● 连接导线
伺服电机控制如何工作
在发送侧,我们有一个可安装的模块、Arduino和NRF24L01,而在接收侧,我们有一个NRF24L01、Arduino和一个伺服电机。
当我们在水平上移动距离杆时,方向杆模块将向Arduino发送模拟值。
在接收侧,将NRF24L01模块设置为接收模式。我们在接收端给出了相同的地址,其他NRF24L01模块正在传输数据。因此,只要模块接收到数据,Arduino就会读取数据并根据其移动电机接收数据。
NRF24L01侧说明
该模块的传输非常耗时。它在过程中消耗了大约 12mA 的功率,甚至 LED。
该模块工作在3.3V,因此不要将其直接连接到5V的Arduino,因为它可能会损坏。
SCK、MOSI 和 MISO 偏见用于SPI 通信,CSN 和 CE 用于设置故事或活动模式以及发送或设置模式。
电路原理图
连接有点冗长,因此我将分别介绍发送器和接收器的连接。
在发送器侧,NRF24L01与Arduino的连接如下:
● 3.3V输入与3.3V连接
● GND与GND连接
● CSN与用户8连接
● CE与隐私7连接
● SCK与用户13连接
● MOSI与用户11连接
● MISO与12连接
然后将潜在的模块与Arduino连接如下:
● 危险模块的VCC到Arduino的5V
● 不发光模块的GND到Arduino的GND
● 危险模块的VER到Arduino的A1
● 危险模块的HOR到Arduino的A0
在接收器侧,NRF24L01与Arduino的连接与发送器侧的连接相同。使用Arduino连接服务器电机如下:
● 红线到Arduino的5V
● 普通线到Arduino的GND
● 黄线到Arduino的6
代码介绍
首先,包括NRF24L01和伺服电机的库
#include <SPI.h> #include <nRF24L01.h> #include <RF24.h> #include <Servo.h>
然后,定义我们连接NRF24L01的CSN和CE引脚的引脚。之后,我们初始化将发送和接收数据的地址。该地址在发射机和接收机侧应该相同。该地址可以是任何五个字母的字符串。
RF24 radio(7, 8); // ce, Csn const byte address[6] = "00001";
在发送器的setup()函数中,我们设置了发送数据的地址。然后将功率放大范围设置为最小,因为模块彼此很接近。
radio.openWritingPipe(address); radio.setPALevel(RF24_PA_MIN);
在接收器侧,我们使用以下命令并设置模块以从该地址接收数据。
radio.openReadingPipe(0, address);
在发送器的loop()函数中,我们从操纵杆模块读取并在我们之前设置的地址发送值。
radio.write(&x_pos, sizeof(x_pos));
接收器侧的以下命令将从发送器获取数据,并且在将数据映射到0-180之后,我们将移动伺服电机。
radio.read(&x_pos, sizeof(x_pos));
发射端代码:
#include <SPI.h> #include <nRF24L01.h> #include <RF24.h> RF24 radio(7, 8); // CSN, CE const byte address[6] = "00001"; int x_key = A1; int y_key = A0; int x_pos; int y_pos; void setup() { radio.begin(); radio.openWritingPipe(address); radio.setPALevel(RF24_PA_MIN); radio.stopListening(); pinMode (x_key, INPUT) ; pinMode (y_key, INPUT) ; } void loop() { x_pos = analogRead (x_key) ; y_pos = analogRead (y_key) ; radio.write(&x_pos, sizeof(x_pos)); delay(100); }
接收端代码:
#include <SPI.h> #include <nRF24L01.h> #include <RF24.h> #include <Servo.h> Servo servo; RF24 radio(7, 8); // CSN, CE const byte address[6] = "00001"; int servo_pin = 6; void setup() { Serial.begin(9600); radio.begin(); servo.attach (servo_pin ) ; radio.openReadingPipe(0, address); radio.setPALevel(RF24_PA_MIN); radio.startListening(); } void loop() { if (radio.available()) { int x_pos ; radio.read(&x_pos, sizeof(x_pos)); Serial.println(x_pos); x_pos = map(x_pos, 0, 1023, 0, 180); if (x_pos>400 && x_pos<600) { } else{ servo.write (x_pos) ; } } }
创建日期: 2018.09.18 更多内容请访问: https://www.haibucuo.com/lessons/3-5-%E7%94%A8arduinonrf24l01%E9%81%A5%E6%8E%A7%E8%88%B5%E6%9C%BA/