From 9a84bca6dabaeef7f0ca398bea8f2ad330da373b Mon Sep 17 00:00:00 2001 From: Nico Date: Wed, 11 Feb 2015 07:52:57 +0100 Subject: [PATCH] Added F() makro to Keyboard example --- examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino b/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino index d15e684..83566d8 100644 --- a/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino +++ b/examples/HID_Basic/HID_Keyboard/HID_Keyboard.ino @@ -28,8 +28,8 @@ void loop() { digitalWrite(pinLed, HIGH); // Same use as the official library, pretty much self explaining - Keyboard.println("This message was sent with my Arduino."); - Serial.println("Serial port is still working and not glitching out"); + Keyboard.println(F("This message was sent with my Arduino.")); + Serial.println(F("Serial port is still working and not glitching out")); // simple debounce delay(300);