Kiibohd Controller
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

scancode_map.kll 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Name = MD1;
  2. Version = 0.3;
  3. Author = "HaaTa (Jacob Alexander) 2014-2015";
  4. KLL = 0.3c;
  5. # Modified Date
  6. Date = 2015-08-16;
  7. S0x00 : U"Esc";
  8. S0x01 : U"1";
  9. S0x02 : U"2";
  10. S0x03 : U"3";
  11. S0x04 : U"4";
  12. S0x05 : U"5";
  13. S0x06 : U"6";
  14. S0x07 : U"7";
  15. S0x08 : U"8";
  16. S0x09 : U"9";
  17. S0x0A : U"0";
  18. S0x0B : U"Minus";
  19. S0x0C : U"Equal";
  20. S0x0D : U"Backslash";
  21. S0x0E : U"Backtick";
  22. S0x0F : U"Tab";
  23. S0x10 : U"Q";
  24. S0x11 : U"W";
  25. S0x12 : U"E";
  26. S0x13 : U"R";
  27. S0x14 : U"T";
  28. S0x15 : U"Y";
  29. S0x16 : U"U";
  30. S0x17 : U"I";
  31. S0x18 : U"O";
  32. S0x19 : U"P";
  33. S0x1A : U"LBrace";
  34. S0x1B : U"RBrace";
  35. S0x1C : U"Backspace";
  36. S0x1D : U"Ctrl";
  37. S0x1E : U"A";
  38. S0x1F : U"S";
  39. S0x20 : U"D";
  40. S0x21 : U"F";
  41. S0x22 : U"G";
  42. S0x23 : U"H";
  43. S0x24 : U"J";
  44. S0x25 : U"K";
  45. S0x26 : U"L";
  46. S0x27 : U"Semicolon";
  47. S0x28 : U"Quote";
  48. S0x29 : U"Enter";
  49. S0x2A : U"LShift";
  50. S0x2B : U"Z";
  51. S0x2C : U"X";
  52. S0x2D : U"C";
  53. S0x2E : U"V";
  54. S0x2F : U"B";
  55. S0x30 : U"N";
  56. S0x31 : U"M";
  57. S0x32 : U"Comma";
  58. S0x33 : U"Period";
  59. S0x34 : U"Slash";
  60. S0x35 : U"RShift";
  61. S0x36 : U"Function1"; # Fun key
  62. S0x37 : U"Function2"; # Left Blank Key
  63. S0x38 : U"LAlt";
  64. S0x39 : U"LGui";
  65. S0x3A : U"Space";
  66. S0x3B : U"RGui";
  67. S0x3C : U"RAlt";
  68. S0x3D : U"Function3"; # Right Blank Key 1
  69. S0x3E : U"Function4"; # Right Blank Key 2
  70. # Custom Action Examples
  71. # Example capability, prints to cli
  72. action1 => CustomAction_action1_capability(); # No arguments
  73. # Blocks given USB Code, must be used with blockLink
  74. # Simple example, supports only blocking a single key at a time
  75. # Keys must be specified using numbers see Macro/PartialMap/usb_hid.h
  76. blockHold => CustomAction_blockHold_capability( usbCode : 1 ); # Single 8-bit argument
  77. blockKey => CustomAction_blockKey_capability( usbCode : 1 );