When we want to develop wireless electronic applications, the NRF24 chip comes in handy. It is a low power 2.4GHz transceiver chip with lots of interesting features. And on top of that it is really cheap, you can get a couple of ready to use boards for just around 1€!
The chip pinout has several lines dedicated to power supply, oscillator, antenna, etc, but I am assuming we are going to use the mentioned ready to use board. This board usually has the following pinout:
Now let's see what each line is for:
- GND: This is the gound line. No comment xD
- VCC: Power supply line. It is worth mentioning the NRF24 chip admits from 1.9v to 3.6v, but the SPI interface is 5v tolerant, so we can connect it to arduinos running powered at 5v but we have to take care to not power the NRF24 chip with more than 3.6v.
- CE: Chip enable. This line activates the transceiver.
- CSN: This is the SPI chip select line.
- SCK: This is the SPI clock line.
- MOSI: This is the SPI Master Out Slave In line.
- MISO: This is the SPI Master In Slave Out line.
- IRQ: The NRF24 chip is capable of generating interrupts using this line.
With that said, it should be pretty straight forward to connect this board to an Arduino. In my case I am using an Arduino Pro Mini (MHz, 3.3v) atmega328p. The final wire diagram is as follows:
NRF24 board pin Arduino board pnin
1 gnd
2 vcc
3 10
4 4
5 13
6 11
7 12
8 not used
My setup looks like that:
At this point we have covered the hardware part, now let's go with software. The easiest way to play with NRF24 is by using a library, this way we can be sure it has been tested and is fullly functional, furthermore we don't have to go into further details. We are going to use an awesome library from maniacbug that you can find here: maniacbug's Arduino library.
To use the library just follow the instructions, then start the Arduino IDE and you should find a new tab called NRF24 under File->Examples. Select GettingStarted as is illustrated in the next picture:
This example is almost the same as the next one:
/*
Copyright (C) 2011 J. Coliz <maniacbug@ymail.com>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
*/
/**
* Example for Getting Started with nRF24L01+ radios.
*
* This is an example of how to use the RF24 class. Write this sketch to two
* different nodes. Put one of the nodes into 'transmit' mode by connecting
* with the serial monitor and sending a 'T'. The ping node sends the current
* time to the pong node, which responds by sending the value back. The ping
* node can then see how long the whole cycle took.
*/
#include <SPI.h>
#include "nRF24L01.h"
#include "RF24.h"
#include "printf.h"
//
// Hardware configuration
//
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10
RF24 radio(10, 4); //SN: set CE and CSN pins
//
// Topology
//
// Radio pipe addresses for the 2 nodes to communicate.
const uint64_t pipes[2] = { 0xF0F0F0F0E1LL, 0xF0F0F0F0D2LL };
//
// Role management
//
// Set up role. This sketch uses the same software for all the nodes
// in this system. Doing so greatly simplifies testing.
//
// The various roles supported by this sketch
typedef enum { role_ping_out = 1, role_pong_back } role_e;
// The debug-friendly names of those roles
const char* role_friendly_name[] = { "invalid", "Ping out", "Pong back"};
// The role of the current running sketch
role_e role = role_pong_back;
void setup(void)
{
//
// Print preamble
//
Serial.begin(57600);
printf_begin();
printf("\n\rRF24/examples/GettingStarted/\n\r");
printf("ROLE: %s\n\r",role_friendly_name[role]);
printf("*** PRESS 'T' to begin transmitting to the other node\n\r");
//
// Setup and configure rf radio
//
radio.begin();
// optionally, increase the delay between retries & # of retries
radio.setRetries(15,15);
// optionally, reduce the payload size. seems to
// improve reliability
//radio.setPayloadSize(8);
//
// Open pipes to other nodes for communication
//
// This simple sketch opens two pipes for these two nodes to communicate
// back and forth.
// Open 'our' pipe for writing
// Open the 'other' pipe for reading, in position #1 (we can have up to 5 pipes open for reading)
//if ( role == role_ping_out )
{
//radio.openWritingPipe(pipes[0]);
radio.openWritingPipe(pipes[1]);
radio.openReadingPipe(1,pipes[0]);
// radio.openReadingPipe(1,pipes[1]);
}
//else
{
//radio.openWritingPipe(pipes[1]);
//radio.openReadingPipe(1,pipes[0]);
}
//
// Start listening
//
radio.startListening();
//
// Dump the configuration of the rf unit for debugging
//
radio.printDetails();
}
void loop(void)
{
//
// Ping out role. Repeatedly send the current time
//
if (role == role_ping_out)
{
// First, stop listening so we can talk.
radio.stopListening();
// Take the time, and send it. This will block until complete
unsigned long time = millis();
printf("Now sending %lu...",time);
bool ok = radio.write( &time, sizeof(unsigned long) );
if (ok)
printf("ok...");
else
printf("failed.\n\r");
// Now, continue listening
radio.startListening();
// Wait here until we get a response, or timeout (250ms)
unsigned long started_waiting_at = millis();
bool timeout = false;
while ( ! radio.available() && ! timeout )
if (millis() - started_waiting_at > 200 )
timeout = true;
// Describe the results
if ( timeout )
{
printf("Failed, response timed out.\n\r");
}
else
{
// Grab the response, compare, and send to debugging spew
unsigned long got_time;
radio.read( &got_time, sizeof(unsigned long) );
// Spew it
printf("Got response %lu, round-trip delay: %lu\n\r",got_time,millis()-got_time);
}
// Try again 1s later
delay(1000);
}
//
// Pong back role. Receive each packet, dump it out, and send it back
//
if ( role == role_pong_back )
{
// if there is data ready
if ( radio.available() )
{
// Dump the payloads until we've gotten everything
unsigned long got_time;
bool done = false;
while (!done)
{
// Fetch the payload, and see if this was the last one.
done = radio.read( &got_time, sizeof(unsigned long) );
// Spew it
// printf("Got payload %lu...",got_time);
// Delay just a little bit to let the other unit
// make the transition to receiver
delay(20);
}
// First, stop listening so we can talk
radio.stopListening();
// Send the final one back.
radio.write( &got_time, sizeof(unsigned long) );
// printf("Sent response.\n\r");
// Now, resume listening so we catch the next packets.
radio.startListening();
}
}
//
// Change roles
//
if ( Serial.available() )
{
char c = toupper(Serial.read());
if ( c == 'T' && role == role_pong_back )
{
printf("*** CHANGING TO TRANSMIT ROLE -- PRESS 'R' TO SWITCH BACK\n\r");
// Become the primary transmitter (ping out)
role = role_ping_out;
radio.openWritingPipe(pipes[0]);
radio.openReadingPipe(1,pipes[1]);
}
else if ( c == 'R' && role == role_ping_out )
{
printf("*** CHANGING TO RECEIVE ROLE -- PRESS 'T' TO SWITCH BACK\n\r");
// Become the primary receiver (pong back)
role = role_pong_back;
radio.openWritingPipe(pipes[1]);
radio.openReadingPipe(1,pipes[0]);
}
}
}
Now we connect our first Arduino to the computer and program it, then we repeat the operation with the second Arduino and we are ready to test everything.
Now you can connect both Arduinos, and don't forget to set one the these as transmitter by pressing T.
If everything went right, you should get something similar to the following for your emitter node:
RF24/examples/GettingStarted/
ROLE: Pong back
*** PRESS 'T' to begin transmitting to the other node
STATUS = 0x0e RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=7 TX_FULL=0
RX_ADDR_P0-1 = 0xf0f0f0f0d2 0xf0f0f0f0e1
RX_ADDR_P2-5 = 0xc3 0xc4 0xc5 0xc6
TX_ADDR = 0xf0f0f0f0d2
RX_PW_P0-6 = 0x20 0x20 0x00 0x00 0x00 0x00
EN_AA = 0x3f
EN_RXADDR = 0x03
RF_CH = 0x4c
RF_SETUP = 0x07
CONFIG = 0x0f
DYNPD/FEATURE = 0x00 0x00
Data Rate = 1MBPS
Model = nRF24L01+
CRC Length = 16 bits
PA Power = PA_HIGH
*** CHANGING TO TRANSMIT ROLE -- PRESS 'R' TO SWITCH BACK
Now sending 3823...ok...Got response 3823, round-trip delay: 25
Now sending 4849...ok...Got response 4849, round-trip delay: 25
Now sending 5875...ok...Got response 5875, round-trip delay: 25
Now sending 6901...ok...Got response 6901, round-trip delay: 25
Now sending 7927...ok...Got response 7927, round-trip delay: 23
Now sending 8951...ok...Got response 8951, round-trip delay: 25
Now sending 9977...ok...Got response 9977, round-trip delay: 25
Now sending 11003...ok...Got response 11003, round-trip delay: 25
Now sending 12029...ok...Got response 12029, round-trip delay: 25
Now sending 13056...ok...Got response 13056, round-trip delay: 24
Now sending 14082...ok...Got response 14082, round-trip delay: 24
Now sending 15108...ok...Got response 15108, round-trip delay: 24
Now sending 16134...ok...Got response 16134, round-trip delay: 24
Now sending 17160...ok...Got response 17160, round-trip delay: 22
Now sending 18184...ok...Got response 18184, round-trip delay: 24
Now sending 19210...ok...Got response 19210, round-trip delay: 24
No hay comentarios:
Publicar un comentario