1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-20 21:01:25 +03:00

Removing Leonardo (and Mouse/Keyboard examples) for Arduino 1.0 release.

These will return, but the code isn't finished yet so I don't want to include it.
This commit is contained in:
David A. Mellis
2011-11-28 18:47:45 -05:00
parent 33544fc3e6
commit dca1dc429a
4 changed files with 15 additions and 206 deletions

View File

@ -1,33 +0,0 @@
/*
Keyboard test
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
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);
}
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);
}
}