KeySweeper is a stealthy Arduino-based device, camouflaged as a functioning USB wall charger, that wirelessly and passively sniffs, decrypts, logs and reports back (over GSM) all keystrokes from any Microsoft wireless keyboard in the vicinity.
First of all, thank you for putting this together. This looks really nice. I am trying to replicate this myself with no luck.
I have the Arduino Nano and the nRF24L01+. Based on the schematic the board and the nRF24L01+ is connected.
I tried to use the maniacbug RF24 library from here with no luck: https://github.com/maniacbug/RF24.
Basically the if (radio.available()) is always false. I tried with another library. With most of the other libraries the if (radio.available()) is true, but it stuck in loop because the p[4] is always empty.
Question: any idea why the if (radio.available()) is always false if the connection is right?
Hi,
First of all, thank you for putting this together. This looks really nice. I am trying to replicate this myself with no luck. I have the Arduino Nano and the nRF24L01+. Based on the schematic the board and the nRF24L01+ is connected. I tried to use the maniacbug RF24 library from here with no luck: https://github.com/maniacbug/RF24. Basically the
if (radio.available())
is always false. I tried with another library. With most of the other libraries theif (radio.available())
is true, but it stuck in loop because thep[4]
is always empty. Question: any idea why theif (radio.available())
is always false if the connection is right?Thx!