diff options
author | Devaev Maxim <[email protected]> | 2021-07-03 09:58:09 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-07-03 09:58:09 +0300 |
commit | 671627b768864e1c1b7396d9607ad4acfe87a32c (patch) | |
tree | 7e9ff186dd875bb96958b5b20231f0e10d194a80 /hid/src/usb/keymap.h | |
parent | 3bcaca0cb8a07d704391a3905ea99eee01a71f9d (diff) |
pikvm/pikvm#373: added yen key
Diffstat (limited to 'hid/src/usb/keymap.h')
-rw-r--r-- | hid/src/usb/keymap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hid/src/usb/keymap.h b/hid/src/usb/keymap.h index 1ce4ce90..d1954d3a 100644 --- a/hid/src/usb/keymap.h +++ b/hid/src/usb/keymap.h @@ -133,6 +133,7 @@ KeyboardKeycode keymapUsb(uint8_t code) { case 104: return KEYPAD_DOT; case 105: return KEY_POWER; case 106: return KEY_NON_US; + case 107: return KEY_INTERNATIONAL3; default: return KEY_ERROR_UNDEFINED; } } |