From 90a72b109e2d41713b271bfc83bcc03191c6d83a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?th=C3=B8th?= Date: Tue, 15 Jan 2019 11:21:08 +0200 Subject: [PATCH] modified CSN pin to 15 ( gpio 22 ) --- example-nrf24-recv-rpi.py | 2 +- example-nrf24-send-rpi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)