Added F() makro to Keyboard example

This commit is contained in:
Nico 2015-02-11 07:52:57 +01:00
parent 9c9e8353f9
commit 9a84bca6da

View file

@ -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);