mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-05 16:24:12 +01:00
23c7536dc7
Merge remote-tracking branch 'arduino/master' into ide-1.5.x Conflicts: app/src/processing/app/debug/AvrdudeUploader.java build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.ino build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.ino build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.ino build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino hardware/arduino/boards.txt
39 lines
804 B
C++
39 lines
804 B
C++
/*
|
|
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
|
|
*/
|
|
|
|
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);
|
|
}
|
|
}
|
|
|