1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03: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 * 10-kilohm resistor attached from pin 4 to ground
created 24 Oct 2011 created 24 Oct 2011
modified 19 Mar 2012
by Tom Igoe by Tom Igoe
This example code is in the public domain. This example code is in the public domain.
@ -34,7 +35,7 @@ void loop() {
// increment the button counter // increment the button counter
counter++; counter++;
// type out a message // type out a message
Keyboard.print("You pressed the button: "); Keyboard.print("You pressed the button ");
Keyboard.print(counter); Keyboard.print(counter);
Keyboard.println(" times."); Keyboard.println(" times.");
} }