Skip to content

Commit

Permalink
added some keycodes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisVeigl committed Dec 6, 2023
1 parent a2673e7 commit bc4d716
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FabiWare/fabi.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//#include <SPI.h>


#define VERSION_STRING "FABI v2.7"
#define VERSION_STRING "FABI v2.8"

//#define DEBUG_OUTPUT // if debug output is desired

Expand Down
8 changes: 7 additions & 1 deletion FabiWare/keys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,13 @@ const keymap_struct keymap[] PROGMEM = {
{"7", KEY_7},
{"8", KEY_8},
{"9", KEY_9},
{"0", KEY_0}
{"0", KEY_0},
{"PLUS", 0xdf},
{"MINUS", 0xde},
{"ASTERISK", 0xdd},
{"SLASH", 0xdc},
{"HASH", 0xba},
{"DOT", 0xeb},
};

#define KEYMAP_ELEMENTS (sizeof keymap / sizeof keymap[0])
Expand Down

0 comments on commit bc4d716

Please sign in to comment.