-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
Description
Describe the behavior you would like
When creating the RF24(CE_PIN, CSN_PIN), on a basic Arduino you can use any digital GPIO pins for CE and CSN. But I highly recommend using pin 10 for CE, and pin 9 for CSN. Because that's what the integrated Nano/nRF24L01 boards use. It won't work otherwise.
Propose an implementation or solution
#define CE_PIN 10
#define CSN_PIN 9
Describe alternatives you have considered
No response
Additional context
No response