I'm looking to create a Keylogger using a Digispark and a USB Type A Female Breakout.
Wiring:

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?