Added F() makro to Keyboard example
This commit is contained in:
parent
9c9e8353f9
commit
9a84bca6da
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue