-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Keyboard Serial example from arduino.cc
- Loading branch information
nnaka1
committed
Mar 2, 2020
1 parent
a7abf94
commit a587425
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
Keyboard test | ||
For the Arduino Leonardo, Micro or Due | ||
Reads a byte from the serial port, sends a keystroke back. | ||
The sent keystroke is one higher than what's received, e.g. if you send a, | ||
you get b, send A you get B, and so forth. | ||
The circuit: | ||
- none | ||
created 21 Oct 2011 | ||
modified 27 Mar 2012 | ||
by Tom Igoe | ||
This example code is in the public domain. | ||
http://www.arduino.cc/en/Tutorial/KeyboardSerial | ||
*/ | ||
|
||
#include "Keyboard.h" | ||
|
||
void setup() { | ||
// open the serial port: | ||
Serial.begin(9600); | ||
// initialize control over the keyboard: | ||
Keyboard.begin(); | ||
} | ||
|
||
void loop() { | ||
// check for incoming serial data: | ||
if (Serial.available() > 0) { | ||
// read incoming serial data: | ||
char inChar = Serial.read(); | ||
// Type the next ASCII value from what you received: | ||
Keyboard.write(inChar + 1); | ||
} | ||
} |