Skip to content

Commit

Permalink
small fix in v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepdiy committed Apr 29, 2021
1 parent 5968ac0 commit 4635a90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code V0.1/Arduino Files/readsettings.ino
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ char getCommandCode(String text) {
char code = textCharacters[0];

code = (text == "KEY_LEFT_CTRL") ? KEY_LEFT_CTRL : code;
code = (text == "KEY_CMD") ? KEY_LEFT_ALT : code;
code = (text == "KEY_CMD") ? KEY_LEFT_GUI : code;
code = (text == "KEY_LEFT_GUI") ? KEY_LEFT_GUI : code;
code = (text == "KEY_OPT") ? KEY_LEFT_GUI : code;
code = (text == "KEY_OPT") ? KEY_LEFT_ALT : code;
code = (text == "KEY_LEFT_SHIFT") ? KEY_LEFT_SHIFT : code;
code = (text == "KEY_LEFT_ALT") ? KEY_LEFT_ALT : code;
code = (text == "KEY_UP_ARROW") ? KEY_UP_ARROW : code;
Expand Down
Binary file modified Code V0.1/Quick fix firmware upgrade via .uf2/MacroKB_V0.2.uf2
Binary file not shown.

0 comments on commit 4635a90

Please sign in to comment.