Digistump Forums
The Digispark => Digispark Projects => Topic started by: Coto on August 31, 2017, 12:16:53 pm
-
I'm looking to create a Keylogger using a Digispark and a USB Type A Female Breakout.
Wiring:
(http://i.imgur.com/QKOArF6.png)
Pseudocode:
#include "DigiKeyboard.h"
void setup() {
// don't need to set anything up to use DigiKeyboard
}
void loop() {
DigiKeyboard.sendKeyStroke(0);
DigiKeyboard.println(Key.Pressed_onTheKeyboard);
}
I know this isn't a Keylogger (yet), but just reads the Keyboard's Data from the Digital Pins and passes the Data onto the Computer. So for now, it just acts like a USB Extender cable in that situation - its role is the same.
I would like to ask:
DigiKeyboard.println(Key.Pressed_onTheKeyboard);
What should I replace Key.Pressed_onTheKeyboard with to get this working?
-
I believe the code is
"KeyPressed"
for arduino.
Here is the reference link:
https://www.arduino.cc/en/Reference/KeyPressed
-
Coto, Did you ever get anywhere with this idea ?