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

nRF24 (nrf24l01/nrfl24l01+) radios in the nodejs way

Results 11 node-nrf24 issues
Sort by recently updated
recently updated
newest added

i am trying to install the package on raspbian 11 bullseye 64bit - nodejs v14.19.1 but i have this error: ``` g++ -fPIC -marm -march=armv6zk -mtune=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard -Ofast -Wall...

Hi, I am not able to send or receive anything. ``` var rf24 = new nrf24.nRF24(19, 0); rf24.begin(); rf24.config({ PALevel: nrf24.RF24_PA_MAX, DataRate: nrf24.RF24_1MBPS, Irq: 16 }); console.log(rf24.present()); var data =...

I got many build errors trying to install the library with node v16, I switched to v14 LTS and it works well. So, maybe just adding the nodejs version compatibility...

Hi, I am using the Gettingstarted program on the pi and arduino. When i start the program on pi, i get this output of the details: Cofiguration pins CE-> 22...

Hello, I can not manage to get it working fine on a tinker boar. I spent a lot of hours trying and, by change, I could send some data when...

I have a use case that requires changing the channel the radio is configured to before writing. Is it possible to do this with the library? From what I've tried...

enhancement

Do you have any insight into how to use this library to read strings sent from a radio on an arduino? It's simple enough to read an integer sent from...

question

Currently the readmy specifies that the NRF24 libs should be installed, but i noticed that there is an install script in this lib that currently reinstalls them because the check...

bug
question

I have been trying to get 1 x Arduino Uno and 1 x Raspberry Pi 1 (Model B) talking for a couple of weeks now. I am sure this isn't...

Hi, tying to get new skills in IoT **here code for master:** `const nrf24=require("nrf24"); // Load de module // Init the radio var rf24= new nrf24.nRF24(37,24); rf24.begin(); // Configure the...

question