py-nrf24 icon indicating copy to clipboard operation
py-nrf24 copied to clipboard

Library for NRF24L01 communication using pigpiod on Raspberry Pi.

Results 10 py-nrf24 issues
Sort by recently updated
recently updated
newest added

I was using a Pi Zero W with Python 3.9 : ``` $ python --version Python 3.9.2 ``` After following the "Quick installation of pigpio on Raspbian:" in README.md :...

Please add [RF24 repository (provides RF24.h and printf.h)](https://github.com/nRF24/RF24) to the Arduino example in README.md

My program only receves one message from the sender. I copyed the code from the simple_sender and simple_recever files and just added a diffrent payload. ` payload = struct.pack("@B"+"?"*13+"f"*6+"h"*2, 0x01,...

Using a pi 4 as the receiver and an ESP8266 fot the transmitter , the pi code runs well same as the esp but nothing seems to be publishing,... This...

Hello, I have trouble using this library to use an arduino as a receiver. Does anyone have some sample code or hints ? Thanks

Hello, I successfully established communication between two RP-s as described in the readme. Can library also be used for jetson nano, because the command **sudo apt-get install python-pigpio python3-pigpio** throws...

Implement `reset()` method performing a soft reset setting all registers to their default value.

enhancement

Add `delay` and `retries` as parameters to constructor. Delay is a value between 0 and 15. The delay between retransmissions is (`delay` + 1) * 250 µs Retries is a...

enhancement

Implement methods to set/get the IRQ mask of the NRF24L01+ module. set_irq_mask(mask) get_irq_mask() enable_rx_irq() disable_rx_irq() enable_tx_irq() disable_tx_irq() enable_rt_irq() disable_rt_irq() ``` CONFIG MASK_RX_DR 1

enhancement