Files
ADB-pour-Framework-Arduino/HIDTables.h
T
2025-03-27 19:50:36 +01:00

276 lines
9.8 KiB
C

// https://www.usb.org/sites/default/files/documents/hut1_12v2.pdf, pp. 53
// adapted from https://gist.github.com/MightyPork/6da26e382a7ad91b5496ee55fdc73db2
#ifndef HID_TABLES_h
#define HID_TABLES_h
#define ADB_KEY_MOD_LCTRL 0x01
#define ADB_KEY_MOD_LSHIFT 0x02
#define ADB_KEY_MOD_LALT 0x04
#define ADB_KEY_MOD_LMETA 0x08
#define ADB_KEY_MOD_RCTRL 0x10
#define ADB_KEY_MOD_RSHIFT 0x20
#define ADB_KEY_MOD_RALT 0x40
#define ADB_KEY_MOD_RMETA 0x80
/**
* 0x00 if no key pressed.
*
* If more than N keys are pressed, the HID reports
* ADB_KEY_ERR_OVF in all slots to indicate this condition.
*/
#define ADB_KEY_NONE 0x00 // No key pressed
#define ADB_KEY_ERR_OVF 0x01 // Keyboard Error Roll Over - used for all slots if too many keys are pressed ("Phantom key")
// 0x02 // Keyboard POST Fail
// 0x03 // Keyboard Error Undefined
#define ADB_KEY_A 0x04 // Keyboard a and A
#define ADB_KEY_B 0x05 // Keyboard b and B
#define ADB_KEY_C 0x06 // Keyboard c and C
#define ADB_KEY_D 0x07 // Keyboard d and D
#define ADB_KEY_E 0x08 // Keyboard e and E
#define ADB_KEY_F 0x09 // Keyboard f and F
#define ADB_KEY_G 0x0a // Keyboard g and G
#define ADB_KEY_H 0x0b // Keyboard h and H
#define ADB_KEY_I 0x0c // Keyboard i and I
#define ADB_KEY_J 0x0d // Keyboard j and J
#define ADB_KEY_K 0x0e // Keyboard k and K
#define ADB_KEY_L 0x0f // Keyboard l and L
#define ADB_KEY_M 0x10 // Keyboard m and M
#define ADB_KEY_N 0x11 // Keyboard n and N
#define ADB_KEY_O 0x12 // Keyboard o and O
#define ADB_KEY_P 0x13 // Keyboard p and P
#define ADB_KEY_Q 0x14 // Keyboard q and Q
#define ADB_KEY_R 0x15 // Keyboard r and R
#define ADB_KEY_S 0x16 // Keyboard s and S
#define ADB_KEY_T 0x17 // Keyboard t and T
#define ADB_KEY_U 0x18 // Keyboard u and U
#define ADB_KEY_V 0x19 // Keyboard v and V
#define ADB_KEY_W 0x1a // Keyboard w and W
#define ADB_KEY_X 0x1b // Keyboard x and X
#define ADB_KEY_Y 0x1c // Keyboard y and Y
#define ADB_KEY_Z 0x1d // Keyboard z and Z
#define ADB_KEY_1 0x1e // Keyboard 1 and !
#define ADB_KEY_2 0x1f // Keyboard 2 and @
#define ADB_KEY_3 0x20 // Keyboard 3 and #
#define ADB_KEY_4 0x21 // Keyboard 4 and $
#define ADB_KEY_5 0x22 // Keyboard 5 and %
#define ADB_KEY_6 0x23 // Keyboard 6 and ^
#define ADB_KEY_7 0x24 // Keyboard 7 and &
#define ADB_KEY_8 0x25 // Keyboard 8 and *
#define ADB_KEY_9 0x26 // Keyboard 9 and (
#define ADB_KEY_0 0x27 // Keyboard 0 and )
#define ADB_KEY_ENTER 0x28 // Keyboard Return (ENTER)
#define ADB_KEY_ESC 0x29 // Keyboard ESCAPE
#define ADB_KEY_BACKSPACE 0x2a // Keyboard DELETE (Backspace)
#define ADB_KEY_TAB 0x2b // Keyboard Tab
#define ADB_KEY_SPACE 0x2c // Keyboard Spacebar
#define ADB_KEY_MINUS 0x2d // Keyboard - and _
#define ADB_KEY_EQUAL 0x2e // Keyboard = and +
#define ADB_KEY_LEFTBRACE 0x2f // Keyboard [ and {
#define ADB_KEY_RIGHTBRACE 0x30 // Keyboard ] and }
#define ADB_KEY_BACKSLASH 0x31 // Keyboard \ and |
#define ADB_KEY_HASHTILDE 0x32 // Keyboard Non-US # and ~
#define ADB_KEY_SEMICOLON 0x33 // Keyboard ; and :
#define ADB_KEY_APOSTROPHE 0x34 // Keyboard ' and "
#define ADB_KEY_GRAVE 0x35 // Keyboard ` and ~
#define ADB_KEY_COMMA 0x36 // Keyboard , and <
#define ADB_KEY_DOT 0x37 // Keyboard . and >
#define ADB_KEY_SLASH 0x38 // Keyboard / and ?
#define ADB_KEY_CAPSLOCK 0x39 // Keyboard Caps Lock
#define ADB_KEY_F1 0x3a // Keyboard F1
#define ADB_KEY_F2 0x3b // Keyboard F2
#define ADB_KEY_F3 0x3c // Keyboard F3
#define ADB_KEY_F4 0x3d // Keyboard F4
#define ADB_KEY_F5 0x3e // Keyboard F5
#define ADB_KEY_F6 0x3f // Keyboard F6
#define ADB_KEY_F7 0x40 // Keyboard F7
#define ADB_KEY_F8 0x41 // Keyboard F8
#define ADB_KEY_F9 0x42 // Keyboard F9
#define ADB_KEY_F10 0x43 // Keyboard F10
#define ADB_KEY_F11 0x44 // Keyboard F11
#define ADB_KEY_F12 0x45 // Keyboard F12
#define ADB_KEY_SYSRQ 0x46 // Keyboard Print Screen
#define ADB_KEY_SCROLLLOCK 0x47 // Keyboard Scroll Lock
#define ADB_KEY_PAUSE 0x48 // Keyboard Pause
#define ADB_KEY_INSERT 0x49 // Keyboard Insert
#define ADB_KEY_HOME 0x4a // Keyboard Home
#define ADB_KEY_PAGEUP 0x4b // Keyboard Page Up
#define ADB_KEY_DELETE 0x4c // Keyboard Delete Forward
#define ADB_KEY_END 0x4d // Keyboard End
#define ADB_KEY_PAGEDOWN 0x4e // Keyboard Page Down
#define ADB_KEY_RIGHT 0x4f // Keyboard Right Arrow
#define ADB_KEY_LEFT 0x50 // Keyboard Left Arrow
#define ADB_KEY_DOWN 0x51 // Keyboard Down Arrow
#define ADB_KEY_UP 0x52 // Keyboard Up Arrow
#define ADB_KEY_NUMLOCK 0x53 // Keyboard Num Lock and Clear
#define ADB_KEY_KPSLASH 0x54 // Keypad /
#define ADB_KEY_KPASTERISK 0x55 // Keypad *
#define ADB_KEY_KPMINUS 0x56 // Keypad -
#define ADB_KEY_KPPLUS 0x57 // Keypad +
#define ADB_KEY_KPENTER 0x58 // Keypad ENTER
#define ADB_KEY_KP1 0x59 // Keypad 1 and End
#define ADB_KEY_KP2 0x5a // Keypad 2 and Down Arrow
#define ADB_KEY_KP3 0x5b // Keypad 3 and PageDn
#define ADB_KEY_KP4 0x5c // Keypad 4 and Left Arrow
#define ADB_KEY_KP5 0x5d // Keypad 5
#define ADB_KEY_KP6 0x5e // Keypad 6 and Right Arrow
#define ADB_KEY_KP7 0x5f // Keypad 7 and Home
#define ADB_KEY_KP8 0x60 // Keypad 8 and Up Arrow
#define ADB_KEY_KP9 0x61 // Keypad 9 and Page Up
#define ADB_KEY_KP0 0x62 // Keypad 0 and Insert
#define ADB_KEY_KPDOT 0x63 // Keypad . and Delete
#define ADB_KEY_102ND 0x64 // Keyboard Non-US \ and |
#define ADB_KEY_COMPOSE 0x65 // Keyboard Application
#define ADB_KEY_POWER 0x66 // Keyboard Power
#define ADB_KEY_KPEQUAL 0x67 // Keypad =
#define ADB_KEY_F13 0x68 // Keyboard F13
#define ADB_KEY_F14 0x69 // Keyboard F14
#define ADB_KEY_F15 0x6a // Keyboard F15
#define ADB_KEY_F16 0x6b // Keyboard F16
#define ADB_KEY_F17 0x6c // Keyboard F17
#define ADB_KEY_F18 0x6d // Keyboard F18
#define ADB_KEY_F19 0x6e // Keyboard F19
#define ADB_KEY_F20 0x6f // Keyboard F20
#define ADB_KEY_F21 0x70 // Keyboard F21
#define ADB_KEY_F22 0x71 // Keyboard F22
#define ADB_KEY_F23 0x72 // Keyboard F23
#define ADB_KEY_F24 0x73 // Keyboard F24
#define ADB_KEY_OPEN 0x74 // Keyboard Execute
#define ADB_KEY_HELP 0x75 // Keyboard Help
#define ADB_KEY_PROPS 0x76 // Keyboard Menu
#define ADB_KEY_FRONT 0x77 // Keyboard Select
#define ADB_KEY_STOP 0x78 // Keyboard Stop
#define ADB_KEY_AGAIN 0x79 // Keyboard Again
#define ADB_KEY_UNDO 0x7a // Keyboard Undo
#define ADB_KEY_CUT 0x7b // Keyboard Cut
#define ADB_KEY_COPY 0x7c // Keyboard Copy
#define ADB_KEY_PASTE 0x7d // Keyboard Paste
#define ADB_KEY_FIND 0x7e // Keyboard Find
#define ADB_KEY_MUTE 0x7f // Keyboard Mute
#define ADB_KEY_VOLUMEUP 0x80 // Keyboard Volume Up
#define ADB_KEY_VOLUMEDOWN 0x81 // Keyboard Volume Down
// 0x82 Keyboard Locking Caps Lock
// 0x83 Keyboard Locking Num Lock
// 0x84 Keyboard Locking Scroll Lock
#define ADB_KEY_KPCOMMA 0x85 // Keypad Comma
// 0x86 Keypad Equal Sign
#define ADB_KEY_RO 0x87 // Keyboard International1
#define ADB_KEY_KATAKANAHIRAGANA 0x88 // Keyboard International2
#define ADB_KEY_YEN 0x89 // Keyboard International3
#define ADB_KEY_HENKAN 0x8a // Keyboard International4
#define ADB_KEY_MUHENKAN 0x8b // Keyboard International5
#define ADB_KEY_KPJPCOMMA 0x8c // Keyboard International6
// 0x8d Keyboard International7
// 0x8e Keyboard International8
// 0x8f Keyboard International9
#define ADB_KEY_HANGEUL 0x90 // Keyboard LANG1
#define ADB_KEY_HANJA 0x91 // Keyboard LANG2
#define ADB_KEY_KATAKANA 0x92 // Keyboard LANG3
#define ADB_KEY_HIRAGANA 0x93 // Keyboard LANG4
#define ADB_KEY_ZENKAKUHANKAKU 0x94 // Keyboard LANG5
// 0x95 Keyboard LANG6
// 0x96 Keyboard LANG7
// 0x97 Keyboard LANG8
// 0x98 Keyboard LANG9
// 0x99 Keyboard Alternate Erase
// 0x9a Keyboard SysReq/Attention
// 0x9b Keyboard Cancel
// 0x9c Keyboard Clear
// 0x9d Keyboard Prior
// 0x9e Keyboard Return
// 0x9f Keyboard Separator
// 0xa0 Keyboard Out
// 0xa1 Keyboard Oper
// 0xa2 Keyboard Clear/Again
// 0xa3 Keyboard CrSel/Props
// 0xa4 Keyboard ExSel
// 0xb0 Keypad 00
// 0xb1 Keypad 000
// 0xb2 Thousands Separator
// 0xb3 Decimal Separator
// 0xb4 Currency Unit
// 0xb5 Currency Sub-unit
#define ADB_KEY_KPLEFTPAREN 0xb6 // Keypad (
#define ADB_KEY_KPRIGHTPAREN 0xb7 // Keypad )
// 0xb8 Keypad {
// 0xb9 Keypad }
// 0xba Keypad Tab
// 0xbb Keypad Backspace
// 0xbc Keypad A
// 0xbd Keypad B
// 0xbe Keypad C
// 0xbf Keypad D
// 0xc0 Keypad E
// 0xc1 Keypad F
// 0xc2 Keypad XOR
// 0xc3 Keypad ^
// 0xc4 Keypad %
// 0xc5 Keypad <
// 0xc6 Keypad >
// 0xc7 Keypad &
// 0xc8 Keypad &&
// 0xc9 Keypad |
// 0xca Keypad ||
// 0xcb Keypad :
// 0xcc Keypad #
// 0xcd Keypad Space
// 0xce Keypad @
// 0xcf Keypad !
// 0xd0 Keypad Memory Store
// 0xd1 Keypad Memory Recall
// 0xd2 Keypad Memory Clear
// 0xd3 Keypad Memory Add
// 0xd4 Keypad Memory Subtract
// 0xd5 Keypad Memory Multiply
// 0xd6 Keypad Memory Divide
// 0xd7 Keypad +/-
// 0xd8 Keypad Clear
// 0xd9 Keypad Clear Entry
// 0xda Keypad Binary
// 0xdb Keypad Octal
// 0xdc Keypad Decimal
// 0xdd Keypad Hexadecimal
#define ADB_KEY_LEFTCTRL 0xe0 // Keyboard Left Control
#define ADB_KEY_LEFTSHIFT 0xe1 // Keyboard Left Shift
#define ADB_KEY_LEFTALT 0xe2 // Keyboard Left Alt
#define ADB_KEY_LEFTMETA 0xe3 // Keyboard Left GUI
#define ADB_KEY_RIGHTCTRL 0xe4 // Keyboard Right Control
#define ADB_KEY_RIGHTSHIFT 0xe5 // Keyboard Right Shift
#define ADB_KEY_RIGHTALT 0xe6 // Keyboard Right Alt
#define ADB_KEY_RIGHTMETA 0xe7 // Keyboard Right GUI
#define ADB_KEY_MEDIA_PLAYPAUSE 0xe8
#define ADB_KEY_MEDIA_STOPCD 0xe9
#define ADB_KEY_MEDIA_PREVIOUSSONG 0xea
#define ADB_KEY_MEDIA_NEXTSONG 0xeb
#define ADB_KEY_MEDIA_EJECTCD 0xec
#define ADB_KEY_MEDIA_VOLUMEUP 0xed
#define ADB_KEY_MEDIA_VOLUMEDOWN 0xee
#define ADB_KEY_MEDIA_MUTE 0xef
#define ADB_KEY_MEDIA_WWW 0xf0
#define ADB_KEY_MEDIA_BACK 0xf1
#define ADB_KEY_MEDIA_FORWARD 0xf2
#define ADB_KEY_MEDIA_STOP 0xf3
#define ADB_KEY_MEDIA_FIND 0xf4
#define ADB_KEY_MEDIA_SCROLLUP 0xf5
#define ADB_KEY_MEDIA_SCROLLDOWN 0xf6
#define ADB_KEY_MEDIA_EDIT 0xf7
#define ADB_KEY_MEDIA_SLEEP 0xf8
#define ADB_KEY_MEDIA_COFFEE 0xf9
#define ADB_KEY_MEDIA_REFRESH 0xfa
#define ADB_KEY_MEDIA_CALC 0xfb
#endif