Merge pull request #134 from ScaredyCat/patch-2

Remove Ctrl+Alt+Del from README example
This commit is contained in:
T-vK
2022-01-06 22:33:35 +01:00
committed by GitHub

View File

@@ -58,13 +58,18 @@ void loop() {
bleKeyboard.write(KEY_MEDIA_PLAY_PAUSE);
delay(1000);
Serial.println("Sending Ctrl+Alt+Delete...");
//
// Below is an example of pressing multiple keyboard modifiers
// which by default is commented out.
//
/* Serial.println("Sending Ctrl+Alt+Delete...");
bleKeyboard.press(KEY_LEFT_CTRL);
bleKeyboard.press(KEY_LEFT_ALT);
bleKeyboard.press(KEY_DELETE);
delay(100);
bleKeyboard.releaseAll();
*/
}
Serial.println("Waiting 5 seconds...");