Optimized high speed nRF24L01+ driver class documentation v1.5.0
TMRh20 2020 - Optimized fork of the nRF24L01+ driver
Loading...
Searching...
No Matches
Deprecated List
Member RF24::isAckPayloadAvailable (void)
For compatibility with old code only, see synonymous function available(). Use read() to retrieve the ack payload and getDynamicPayloadSize() to get the ACK payload size. See our migration guide to understand what you should update in your code.
Member RF24::isFifo (bool about_tx, bool check_empty)
Use RF24::isFifo(bool about_tx) instead. See our migration guide to understand what you should update in your code.
Member RF24::maskIRQ (bool tx_ok, bool tx_fail, bool rx_ready)
Use setStatusFlags() instead. See our migration guide to understand what you should update in your code.
Member RF24::openReadingPipe (uint8_t number, uint64_t address)
For compatibility with old code only, see newer function openReadingPipe(). See our migration guide to understand what you should update in your code.
Member RF24::openWritingPipe (const uint8_t *address)
Use RF24::stopListening(uint8_t*) instead.
Member RF24::openWritingPipe (uint64_t address)
For compatibility with old code only, see newer function openWritingPipe(). See our migration guide to understand what you should update in your code.
Member RF24::stopListening (const uint64_t txAddress)
Use stopListening(const uint8_t*) instead. See our migration guide to understand what you should update in your code.
Member RF24::whatHappened (bool &tx_ok, bool &tx_fail, bool &rx_ready)
Use clearStatusFlags() instead. See our migration guide to understand what you should update in your code.