Does ESP WROOM 32 works withRF24 Libary and NRF24L01 module?
Posted: Wed Jan 08, 2020 2:38 pm
Hello ESP fellows ,
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:
to
The reason for this is that CE and CSN are respectively connected to GPIO pin 4 and GPIO pin 2.
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:)
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:)