natevw / node-nrf

Pure-JavaScript nRF24L01 driver library
117 stars 31 forks source link

Working without irq ? #42

Closed guizmo51 closed 8 years ago

guizmo51 commented 8 years ago

Hi, I have 2 Rpi and NRF24L01 on each one, I run rpi-hub or ping/pong test and it's work (using this library : https://github.com/jscrane/RF24-rpi )

in ping/pong test the radio method used cePn, CSNPin and SPISpeed. Nothing about irqPin. RF24 radio(RPI_V2_GPIO_P1_15, RPI_V2_GPIO_P1_26, BCM2835_SPI_SPEED_8MHZ);

With node-nrf I set the cePin with the right pin, and irqPin to null but nothing happens (using your test.js ). Do you have idea about what I did wrong ?

thanks !

guizmo51 commented 8 years ago

Well, my NRf modules were working (using RF24-RPi lib) with an other configuration for PIN. I changed the PIN configuration using yours and now it's work.

Thanks for your job :)