1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Changed text of KeyboardMessage to make it easier for international keyboards.

This commit is contained in:
Tom Igoe 2012-03-19 12:02:48 -04:00
parent 5dba3bad20
commit a165d87aa9

View File

@ -8,6 +8,7 @@
* 10-kilohm resistor attached from pin 4 to ground
created 24 Oct 2011
modified 19 Mar 2012
by Tom Igoe
This example code is in the public domain.
@ -34,7 +35,7 @@ void loop() {
// increment the button counter
counter++;
// type out a message
Keyboard.print("You pressed the button: ");
Keyboard.print("You pressed the button ");
Keyboard.print(counter);
Keyboard.println(" times.");
}