From a165d87aa9c1607c6469df7ac5dc42be833d5a0b Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Mon, 19 Mar 2012 12:02:48 -0400 Subject: [PATCH] Changed text of KeyboardMessage to make it easier for international keyboards. --- .../examples/9.Keyboard/KeyboardMessage/KeyboardMessage.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/shared/examples/9.Keyboard/KeyboardMessage/KeyboardMessage.ino b/build/shared/examples/9.Keyboard/KeyboardMessage/KeyboardMessage.ino index 51b1ce2c6..503c78f5e 100644 --- a/build/shared/examples/9.Keyboard/KeyboardMessage/KeyboardMessage.ino +++ b/build/shared/examples/9.Keyboard/KeyboardMessage/KeyboardMessage.ino @@ -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."); }