Skip to content

Commit

Permalink
Adding CAPS letter with modifier support
Browse files Browse the repository at this point in the history
  • Loading branch information
gg64du02 committed May 30, 2018
1 parent 790ca88 commit d78700a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
2 changes: 2 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

# TODO: try most scripts available with hak5's payloads

# TODO: add the support of DEFAULT_DELAY

# TODO: make a video about it ?

# TODO:Add an info button next to it when the RAM usage guess is RED.
Expand Down
31 changes: 28 additions & 3 deletions duckSpark.js_files/duckSpark.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ var comboMap = { // Key that can only be used in combos
CONTROL:'MOD_CONTROL_LEFT' //former: KEY_LEFT_CTRL
};


var keyMap = { // Normal keys
//ESCAPE:'KEY_LEFT_ESC',
a:'KEY_A',
Expand Down Expand Up @@ -89,10 +88,36 @@ var keyMap = { // Normal keys
w:'KEY_W',
x:'KEY_X',
y:'KEY_Y',
z:'KEY_Z'
z:'KEY_Z',
//z:'KEY_Z'
A:'KEY_A',
B:'KEY_B',
C:'KEY_C',
D:'KEY_D',
E:'KEY_E',
F:'KEY_F',
G:'KEY_G',
H:'KEY_H',
I:'KEY_I',
J:'KEY_J',
K:'KEY_K',
L:'KEY_L',
M:'KEY_M',
N:'KEY_N',
O:'KEY_O',
P:'KEY_P',
Q:'KEY_Q',
R:'KEY_R',
S:'KEY_S',
T:'KEY_T',
U:'KEY_U',
V:'KEY_V',
W:'KEY_W',
X:'KEY_X',
Y:'KEY_Y',
Z:'KEY_Z'
};



//gg64du02
//debugger purpose
Expand Down

0 comments on commit d78700a

Please sign in to comment.