File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
examples/Keyboard/Use_Keyboard Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 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
2929void 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}
You can’t perform that action at this time.
0 commit comments