The question in short: Can i use the RF24 libary together with an ESP wroom 32 MCU and an NRF24L01 communication module?
The link to this Libary is:
https://github.com/nRF24/RF24
I see in the github file directory: "fix build issues against ESP 32 Wroom" so i expected this libary was suitable to use.
Situation:
I would like to communicate between two "esp wroom 32" microcontrollers.
For the communication i want to use two "NRF24L01" communication modules.
See attachment for simple diagram.
I followed this tutorial on:
https://howtomechatronics.com/tutorials ... -tutorial/
I used the same code for receiver and transmitter with exception that i changed this line:
Code: Select all
RF24 radio(7, 8); // CE, CSN
Code: Select all
RF24 radio(4, 2); // CE, CSN
The MCU hardware SPI bus is used.
The result is that there is no text showing up in de serial monitor at the reveiving MCU.
Thank you in advance:)