Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 - for obvious reasons.
//
/* 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...");
Expand Down