#include "Keyboard.h"
void setup() {
// open the serial port:
Serial.begin(9600);
// initialize control over the keyboard:
}
void loop() {
// check for incoming serial data:
if (Serial.available() > 0) {
// read incoming serial data:
// Type the next ASCII value from what you received:
}
}