I have wired up my Arduino according to the link above.
| Signal | RF Module | COLOR | Arduino |
| GND | 1 | Brown | GND |
| VCC | 2 | Red | 3V3 |
| CE | 3 | Orange | 8 |
| CSN | 4 | Yellow | 9 or 7(a) |
| SCK | 5 | Green | 13 |
| MOSI | 6 | Blue | 11 |
| MISO | 7 | Violet | 12 |
| IRQ | 8 | Gray | 2(b) |
I am using the RF24 Library from https://github.com/maniacbug/RF24/archives/master
I am trying the getting started sketch
It has this in the sketch
// Set up nRF24L01 radio on SPI bus plus pins 9 & 10
RF24 radio(9,10);
well pin 10 is not even connected?
PIN9 is connected to CSN
Has anyone got this working? I am new to SPI and generally everything.
If I run the script I get this in the serial monitor
RF24/examples/GettingStarted/
ROLE: Pong back
*** PRESS 'T' to begin transmitting to the other node
STATUS = 0x00 RX_DR=0 TX_DS=0 MAX_RT=0 RX_P_NO=0 TX_FULL=0
RX_ADDR_P0-1 = 0x0000000000 0xffffffffff
RX_ADDR_P2-5 = 0x7f 0x3f 0x00 0x00
TX_ADDR = 0x0000000000
RX_PW_P0-6 = 0x00 0x00 0x00 0x00 0xff 0x7f
ENAA = 0xff
EN_RXADDR = 0x00
RF_CH = 0x00
RF_SETUP = 0x00
CONFIG = 0x00
DYNPD/FEATURE = 0x7f 0xff
Data Rate = 1MBPS
Model = nrf24l01
CRC Length = Disabled
PA Power = PA_Min
Got Payload 4294967295... Sent Response
There is nothing at the other end as I don't have the 2nd unit runing at all!
Chris





