Raspberry pi pico nrf24l01 driver error #11601
-
Hi, I am trying to use the NRF24L01 module just to see how it works. I am using MicroPython to code, obviously, but I am encountering an error. Here is the error I am getting: This is the code that I tried for testing: https://github.com/tinkertechtrove/pico-pi-playing/blob/main/nrf24l01-spi/button.py And this is where I got the library: https://github.com/micropython/micropython-lib/tree/master/micropython/drivers/radio/nrf24l01 I am new to this hobby, and I just want the NRF module to work properly. Any kind of suggestion is welcome. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 9 replies
-
First guess would be something wrong with the wiring or the module. Can you describe (or post a photo) of how it's connected up? |
Beta Was this translation helpful? Give feedback.
-
I suggest you start with the official test script which has been tested on Picos. The code comments list the way to wire them up. |
Beta Was this translation helpful? Give feedback.
-
Install import nrf24l01test on each board. It will print out the wiring that you should be using and will tell you how to run the test. |
Beta Was this translation helpful? Give feedback.
-
You run >>> nrf24l01test.responder() on one board, then >>> nrf24l01test.initiator() on the other. |
Beta Was this translation helpful? Give feedback.
You run
on one board, then
on the other.