Merge pull request #135 from ScaredyCat/patch-3

Comment out CTRL+ALT+DEL
This commit is contained in:
T-vK
2022-01-06 22:34:41 +01:00
committed by GitHub

View File

@@ -28,12 +28,17 @@ void loop() {
delay(1000);
//
// 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...");