I got a new "Nano", installed IDE under Ubuntu and run "File" -> "Examples" -> "01.Basics" -> "blink"
All is fine, led 13 blinks as it should.
As I want to use a RF24 antena, I install "<nRF24L01.h>" and include the lines
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
RF24 radio( 9, 8 ) ; // CE, CSN
All still fine, LED blinks at the rate I select
But when I insert "radio.begin()" in the "setup() section, the blink stops
void setup() {
Serial.begin( 9600 );
pinMode(LED_BUILTIN, OUTPUT);
radio.begin();
Why ?
I want to use the LED to indicate "OK" or "Error" as the Arduino will have no connection to Ubuntu