diff --git a/example-nrf24-recv-rpi.py b/example-nrf24-recv-rpi.py index 70233a1..e87f756 100644 --- a/example-nrf24-recv-rpi.py +++ b/example-nrf24-recv-rpi.py @@ -15,7 +15,7 @@ import spidev pipes = [[0xe7, 0xe7, 0xe7, 0xe7, 0xe7], [0xc2, 0xc2, 0xc2, 0xc2, 0xc2]] radio2 = NRF24(GPIO, spidev.SpiDev()) -radio2.begin(0, 17) +radio2.begin(0, 22) radio2.setRetries(15,15) diff --git a/example-nrf24-send-rpi.py b/example-nrf24-send-rpi.py index 50c6944..1f6ef57 100644 --- a/example-nrf24-send-rpi.py +++ b/example-nrf24-send-rpi.py @@ -16,7 +16,7 @@ import spidev pipes = [[0xe7, 0xe7, 0xe7, 0xe7, 0xe7], [0xc2, 0xc2, 0xc2, 0xc2, 0xc2]] radio = NRF24(GPIO, spidev.SpiDev()) -radio.begin(0, 17) +radio.begin(0, 22) time.sleep(1) radio.setRetries(15,15) radio.setPayloadSize(32)