From 7a96daa973c1235a85b04e573530d579956af0a7 Mon Sep 17 00:00:00 2001 From: TMRh20 Date: Sat, 23 Sep 2023 06:02:58 -0600 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b34ba8b..417899d 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,15 @@ NRF52840 to NRF24L01 communication library for Arduino Notes: - 1. There is only a single layer buffer instead of a 3-layer FIFO like the NRF24L01 - 12/4/2022 + 1. There is only a single layer buffer instead of a 3-layer FIFO like the NRF24L01 2. The enums like `RF24_PA_MAX` are now `NRF_PA_MAX` etc. 3. To modify RF24 examples to work with this library, just change the following: - `#include ` instead of RF24.h - Call `nrf_to_nrf radio;` instead of `RF24 radio(7,8);` - Modify the enums per note 2 -The higher layer libs like RF24Network require additional changes, which will be forthcoming soon... +The higher layer libs like RF24Network have been updated to version 2.0 to accommodate this library. + +The examples work for communication between NRF52840 and NRF24L01 out of the box. Please log an issue for problems with any of the provided examples.