Results 132 comments of TMRh20

The pin pairs on Arduino Mega are as follows: Mega: 5-2, 6-7, 11-12, 46-45 Pin 10 cannot be used for output on a Mega.

I have no plans to add it but if someone wants to submit a PR for it i wouldn’t object to adding it.On Feb 16, 2023, at 4:32 PM, grzegorzbanas...

If you want to use interrupts for sending, you can use the [startWrite() function](https://nrf24.github.io/RF24/classRF24.html#adbf25b53d28d1fcc385fd9738a531b75) The normal write() function will poll until data is sent, but startWrite() will just write the...

Closing, all related issues appear to be closed. Please update if further info etc needed.

Re-opening issue as a reminder to put more info in the docs regarding the difference between write() functions. We have a pinned issue too, so obviously this is an issue...

``` bool tx_ds, tx_df, rx_dr; // declare variables for IRQ masks radio.whatHappened(tx_ds, tx_df, rx_dr); wait_for_event = false; ``` I seem to be getting a similar reaction from my ESP32 using...

This would be a workaround until we can figure out what is going on here: Just need to configure the CE,CS and IRQ pins. ```cpp /* * See documentation at...

From what I can find the ESP32 can’t handle SPI or Serial prints in the ISR. You can only set a variable and handle it outside the ISR. This seems...

> Is it possible to send just an IRQ signal; when nRF24L01 is powerDown. Nope, the Microcontroller can be powered down, but not the radio if you want to receive...

@Tech500 Thinking we can close this issue now? Hoping you've had success with your project(s)!