From 0c52ec785eb3aaaa537c63548eaf1edf12bc7e48 Mon Sep 17 00:00:00 2001 From: Andy Powell Date: Thu, 6 Jan 2022 12:13:48 +0000 Subject: [PATCH 1/2] Update to reflect code. Update readme to reflect commenting out CTRL+ALT+DEL code. --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb3c819..23c0a09 100644 --- a/README.md +++ b/README.md @@ -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..."); From 5cffe1dfd31884bd310ddf52a81b47019d1bf702 Mon Sep 17 00:00:00 2001 From: Andy Powell Date: Thu, 6 Jan 2022 13:35:10 +0000 Subject: [PATCH 2/2] Remove text --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23c0a09..6c40f2f 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ void loop() { // // Below is an example of pressing multiple keyboard modifiers - // which by default is commented out - for obvious reasons. + // which by default is commented out. // /* Serial.println("Sending Ctrl+Alt+Delete..."); bleKeyboard.press(KEY_LEFT_CTRL);