-
The #ifdef conditional in RF24.cpp beginTransaction() isn't compiled when building for Teensy 3.2, so the SPI clock is running at 12mhz (spec says SPI max CLK is 10mhz), though devices seem to work at…
-
So Today I was testing my nodes & uploaded example code from the library & just added some code so that when one node RX data it will write back to the sender, so after testing I found out that when I…
-
Hi, I started working with this library yesterday, after some experiments all hardware and software were connected each other. The problem is that if I try setting amplification level higher than LOW …
BJ4K3 updated
4 years ago
-
Hello
On NANO and NANO-RF board, SPI is on G13 so the LED_BUILTIN can't be used
I propose add two methods on NRF24 classe to allow release SPI and free G13.
This don't change anything in RF…
-
https://github.com/nRF24/RF24/blob/a3ab7ddb075360deac54fe2c8e2fab286793d21c/utility/SPIDEV/spi.h#L79
as title, the SPIDEV driver was installed without error message, but failed to import pyRF24.
…
-
My receiver stops and gets no data after receiving and sending once....and also resets the Arduino sometimes
I have enabled #define failure handler in RF24_config.h
I m running this chip on channe…
-
Installing pyRF24 fails due to compilation errors (see attached). Errors reside within RF24/pyRF24/pyRF24.cpp. There seems to be `#defines` that don't exist in RF24/utility/RPi/bcm2835.h. The defin…
-
I have problem with "Askpaylod " I have used your interrupt example going to do some modified , just adding softwareSerial and then get the character to RF24 receivers and get Askpaylod which is the s…
-
Hi,
I want to use the RF24 library with Raspberry pi 4B, which is based on BCM2711, but the RF24 library use BCM2835 (.c and .h).
**how can I use this library with Raspberry pi 4B?**
Using the …
-
I have a question, I am not very experienced with Arduino.
When sending and receiving data with the RF24 library:
```
radio.write(&my_data, sizeof(my_data));
```
Does `my_data` here always need…