From a1c78280a7c8990e06d6d9ff73285ab709f0544f Mon Sep 17 00:00:00 2001 From: Willem Date: Sat, 12 Oct 2019 00:06:36 +0200 Subject: [PATCH] SPACE missed In the "official" rubber ducky code SPACE is also used --- DIP Switches Example Code.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DIP Switches Example Code.ino b/DIP Switches Example Code.ino index b12f179..fd4a893 100644 --- a/DIP Switches Example Code.ino +++ b/DIP Switches Example Code.ino @@ -148,6 +148,9 @@ void Press(String b) { Keyboard.press(KEY_RIGHT_ARROW); } + else if(b.equals("SPACE")){ + Keyboard.print(" "); + } else if (b.equals("DELETE")) { Keyboard.press(KEY_DELETE);