Last active
April 4, 2021 16:18
-
-
Save SyNeto/081904f2d11ddf393ac9e2444a9baa21 to your computer and use it in GitHub Desktop.
Key numeric maping by position
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Escape = 1 | |
| D1 = 2 | |
| D2 = 3 | |
| D3 = 4 | |
| D4 = 5 | |
| D5 = 6 | |
| D6 = 7 | |
| D7 = 8 | |
| D8 = 9 | |
| D9 = 10 | |
| D0 = 11 | |
| Minus = 12 | |
| Equals = 13 | |
| BackSpace = 14 | |
| Tab = 15 | |
| Q = 16 | |
| W = 17 | |
| E = 18 | |
| R = 19 | |
| T = 20 | |
| Y = 21 | |
| U = 22 | |
| I = 23 | |
| O = 24 | |
| P = 25 | |
| OpenBraces = 26 | |
| CloseBraces = 27 | |
| Enter = 28 | |
| LeftControl = 29 | |
| A = 30 | |
| S = 31 | |
| D = 32 | |
| F = 33 | |
| G = 34 | |
| H = 35 | |
| J = 36 | |
| K = 37 | |
| L = 38 | |
| SemiColon = 39 | |
| Apostrophe = 40 | |
| Tilde = 41 | |
| LeftShift = 42 | |
| BackSlash = 43 | |
| Z = 44 | |
| X = 45 | |
| C = 46 | |
| V = 47 | |
| B = 48 | |
| N = 49 | |
| M = 50 | |
| Comma = 51 | |
| Period = 52 | |
| Slash = 53 | |
| RightShift = 54 | |
| NumpadMultiply = 55 | |
| LeftAlt = 56 | |
| Space = 57 | |
| CapsLock = 58 | |
| F1 = 59 | |
| F2 = 60 | |
| F3 = 61 | |
| F4 = 62 | |
| F5 = 63 | |
| F6 = 64 | |
| F7 = 65 | |
| F8 = 66 | |
| F9 = 67 | |
| F10 = 68 | |
| Numpad7 = 71 | |
| Numpad8 = 72 | |
| Numpad9 = 73 | |
| NumpadMinus = 74 | |
| Numpad4 = 75 | |
| Numpad5 = 76 | |
| Numpad6 = 77 | |
| NumpadPlus = 78 | |
| Numpad1 = 79 | |
| Numpad2 = 80 | |
| Numpad3 = 81 | |
| Numpad0 = 82 | |
| NumpadPeriod = 83 | |
| Extended = 86 | |
| F11 = 87 | |
| F12 = 88 | |
| NumpadEnter = 156 | |
| RightControl = 157 | |
| NumpadSlash = 181 | |
| RightAlt = 184 | |
| NumLock = 197 | |
| Home = 199 | |
| Up = 200 | |
| PageUp = 201 | |
| Left = 203 | |
| Right = 205 | |
| End = 207 | |
| Down = 208 | |
| PageDown = 209 | |
| Insert = 210 | |
| Delete = 211 | |
| ControllerLStick = 222 | |
| ControllerRStick = 223 | |
| LeftMouseButton = 224 | |
| RightMouseButton = 225 | |
| MiddleMouseButton = 226 | |
| X1MouseButton = 227 | |
| X2MouseButton = 228 | |
| MouseScrollUp = 229 | |
| MouseScrollDown = 230 | |
| ControllerLStickUp = 232 | |
| ControllerLStickDown = 233 | |
| ControllerLStickLeft = 234 | |
| ControllerLStickRight = 235 | |
| ControllerRStickUp = 236 | |
| ControllerRStickDown = 237 | |
| ControllerRStickLeft = 238 | |
| ControllerRStickRight = 239 | |
| ControllerLUp = 240 | |
| ControllerLDown = 241 | |
| ControllerLLeft = 242 | |
| ControllerLRight = 243 | |
| ControllerRUp = 244 | |
| ControllerRDown = 245 | |
| ControllerRLeft = 246 | |
| ControllerRRight = 247 | |
| ControllerLBumper = 248 | |
| ControllerRBumper = 249 | |
| ControllerLOption = 250 | |
| ControllerROption = 251 | |
| ControllerLThumb = 252 | |
| ControllerRThumb = 253 | |
| ControllerLTrigger = 254 | |
| ControllerRTrigger = 255 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment