Comment out CTRL+ALT+DEL

Comment out CTRL+ALT+DEL code
This commit is contained in:
Andy Powell
2022-01-06 13:40:23 +00:00
committed by GitHub
parent 82959f26cc
commit 6cf1902c01

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...");