I want to use a nRF24L01 module with a pico but I geek on getting an error that the Hardware is not responding.
I followed this video for the pinout: 
and the code is:
from machine import Pin, SPI import struct from nrf24l01 import NRF24L01 led = Pin('LED', Pin.OUT) csn = Pin(15, mode = Pin.OUT, value = 1) ce = Pin(14, mode = Pin.OUT, value = 0) pipe = b'\xd1\xf0\xf0\xf0\xf0' def setup(): nrf = NRF24L01(ESPI(0), csn, ce, payload_size = 4) nrf.open_tx_pipe(pipe) nrf.start_listening() return nrf nrf = setup() I triple checked the pins and all the cables are in the right position but I still get "OSError: nRF24L01+ Hardware not responding". Does anyone have an idea what the issue could be?