The RF-Nano is an Arduino Nano with an nRF24 module added to the board
Current Status:
Demo programs successfully loaded from rf-nano-master.zip
Both programs compile and execute without errors.
Transmit node sends println's to serial monitor showing data being transmitted,
however Receive node does not hear anything...
As of 2021-04-07 i have not been able to get communication to work,
whether I use CE = 9 or 10...
CE/CSN Confusion:
The table shown above, which came from githug emakefun page, shows:
CE = 9 CSN = 10
The demo program in the rf-nano-master.zip has the init line:
RF24 myRadio(9, 10);
My previous programs with nRF24 use init line:
RF24 radio(CEpin, CSNpin);