I have bought 2 Arduino Giga R1, 2 nRF24L01+ modules and 2 nRF24L01+ adapters. I am using the Arduino SPI in order to connect it with nRF24L01+. And I am using the following code with this change in the code only:
RF24 radio(7, 10); // CE, CSN
This is the Arduino GIGA R1 SPI documentation, and this is the nRF24L01+ modules, and the related adapter (the links of the modules are from a random Google search, just to show you the images + the documentation of the modules).
However I don't see something working. I added the following command both in the Receiver and Transmitter codes:
SPI.begin();
SPI1.begin();
in order to activate both SPI of each Arduino, because I don't know which is which. The result: Nothing works on Arduino GIGA R1... The same code above works fine on Arduino MEGA 2560 R3, so all the modules and the code are fine. The problem is on Arduino GIGA R1...
I supply the nRF24L01+ and the related adapters with 5V/1.5A power supply. I supply each Arduino GIGA R1 with 5V/1.5A power supply.
I have also tried this code, and I got this message:
We have lost connection, preventing unwanted behavior
Does anyone has any idea how to make the 2 Arduino GIGA R1 communicate via the nRF24L01+ link?