0

I've tried building a few libraries from source; they compile fine, but the receiving pi gets no data. I found this post describing similar issues.

If someone could help me understand the reply that would be a big help. (Namely what I should change in the code to match the pin out of my rpi to nrf24 (ex. they use GPIO 4 and I used 25, but I'm not 100% certain what should be changed within the code).

Seamus
  • 23,558
  • 5
  • 42
  • 83
Hayden N
  • 3
  • 1

1 Answers1

0

Almost at the end of the Python code is the line

nrf = NRF24.NRF24(pi, CE=4, payload=NRF24.NRF24.ACK_PAYLOAD, pad='*', address_bytes=3, crc_bytes=2)

Change CE=4 to CE=25

joan
  • 71,852
  • 5
  • 76
  • 108