Skip to content

Commit cbd1b6b

Browse files
Update Use_Keyboard.ino
1 parent 033f7fb commit cbd1b6b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

examples/Keyboard/Use_Keyboard/Use_Keyboard.ino

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* er sie vor der Verwendung ausreichend getestet hat.
77
* Durch die Nutzung dieser Software erklären Sie, dass Sie die Sicherheitswarnungen und Gebrauchsanweisungen gelesen und verstanden haben.
88
*
9-
* DISLAIMER:
9+
* DISCLAIMER:
1010
* This software is provided "as-is" without any express or implied warranty.
1111
* In no event shall the author or company be held liable for any damages arising from the use of this software.
1212
* It is the user's responsibility to ensure that the software is suitable for their needs and that they have tested it
@@ -28,13 +28,11 @@ CustomKeyboard keyboard;
2828

2929
void setup() {
3030
Serial.begin(115200);
31-
while (!Serial) {
32-
; // Warten auf Serial Verbindung
33-
}
31+
// Entfernen der 'while (!Serial) { ; }' Zeile
3432
Serial.println("Keyboard Ready...");
3533

36-
// Beispielschlüssel, ersetzen durch den tatsächlichen Schlüssel aus dem Setup-Script
37-
String key = "34 6 4 1 4095 1694 927 2815 1247 753 0 0 0 0 0 0 0 0 0 0";
34+
// Beispielschlüssel, ersetzen Sie diesen durch den Schlüssel, den Sie aus der Kalibrierung erhalten haben
35+
String key = "AUSGABE AUS DER KALIBRIERUNG HIER EINFÜGEN";
3836
keyboard.setupKey(key);
3937
}
4038

@@ -44,6 +42,5 @@ void loop() {
4442
Serial.print("Taste gedrückt: ");
4543
Serial.println(key);
4644
}
47-
4845
delay(100); // Zum Entprellen
4946
}

0 commit comments

Comments
 (0)