keybrd library is an open source library for creating custom-keyboard firmware.
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.

CHANGELOG.md 4.9KB

7 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. Change Log for keybrd library
  2. =============================
  3. All notable changes to the keybrd project will be documented in this file.
  4. This project adheres to [Semantic Versioning 2.0.0](http://semver.org/).
  5. keybrd version 0.x.x is for initial development.
  6. keybrd version 1.0.0 will be released when the public API is stable.
  7. 0.6.5 (2016-11-16)
  8. ------------------
  9. * Enhancements
  10. * add Code_LayerHoldShift and tutorials/keybrd_3g_shift_pairings/keybrd_3g_shift_pairings.ino
  11. 0.6.4 (2016-11-16)
  12. ------------------
  13. * Enhancements
  14. * add Port_MCP23018
  15. * add Port_MCP23S18
  16. * add Port_ShiftRegs
  17. * add PortWriteInterface
  18. * add add LED_PortOpenDrain
  19. * add examples/IOE_PCA9655E_development/
  20. * rename strobeOn to activeState
  21. * move strobe logic from Port_*::write() to Scanner_IOE::scan()
  22. * Backward incompatible changes
  23. * rename print_microseconds_per_scan() to printMicrosecondsPerScan()
  24. * rename print_scans_per_second() to printScansPerSecond()
  25. * rename Scanner_ShiftRegsPISOSingleRow to Scanner_ShiftRegsRead
  26. * rename Scanner_ShiftRegsPISOMultiRow to Scanner_ShiftRegsReadStrobed
  27. * in Scanner_ShiftRegsReadStrobed, reverse slaveSelect HIGH/LOW for SPI compatible tri-state
  28. * in Port_MCP23S17, add slaveSelect to constructor parameter
  29. * in Port_*, replace write() with writeHigh() and writeLow()
  30. 0.6.3 (2016-10-06)
  31. ------------------
  32. * Enhancements
  33. * add comma to Scanner_IOE constructor
  34. 0.6.1 (2016-10-02)
  35. ------------------
  36. * Enhancements
  37. * Redesign I/O expander Port classes
  38. * Scanner_ShiftRegsReadtrobed class can now read from multiple shift register chains
  39. * Backward incompatible changes
  40. * Rename Scanner_ShiftRegsPISOSingleRow to Scanner_ShiftRegsRead
  41. * Rename Scanner_ShiftRegsPISOMultiRow to Scanner_ShiftRegsReadStrobed
  42. 0.6.0 (2016-09-28)
  43. ------------------
  44. * Enhancements
  45. * Add Port_MCP23S17
  46. * Add Scanner_ShiftRegsPISOSingleRow and Scanner_ShiftRegsPISOMultiRow
  47. * Refine and update tutorials
  48. * Add tutorial_3cde_sublayer_keyboard.md
  49. * Add tutorial_4_connecting_split_keyboards.md
  50. * Add tutorial_4b_split_keyboard_with_shift_registers.md
  51. * Add tutorial_4c_split_keyboard_with_IOE.md
  52. * Add tutorial_5b_LED_on_IOE.md
  53. * Backward incompatible changes
  54. * Move scanner instantiation from Row_* to sketch
  55. * Delete Row_uC and Row_IOE, and replace them with Row
  56. * Combine PortWrite_PCA9655E and PortRead_PCA9655E into Port_PCA9655E
  57. * Delete PortIOE, and move PortIOE variables to IOE port classes
  58. * Rename LED_PCA9655E to LED_Port
  59. * Rename Scanner_Port to Scanner_IOE
  60. * Rename Key_LayeredKeysArray to Key_LayeredKeys
  61. * Rename Code_Layered* to Key_Layered*
  62. * Rename object_*.h files to instantiations_*.h
  63. 0.5.0 (2016-07-22)
  64. ------------------
  65. * Enhancements
  66. * Update tutorials
  67. * Add tutorials for LEDs, active high
  68. * Backward incompatible changes
  69. * Add 32x32 matrix capability to Row_uC
  70. * Add STROBE_ON and STROBE_OFF to scanner class, to set active state
  71. * Rename classes
  72. 0.4.1 (2016-06-21)
  73. ------------------
  74. * Enhancements
  75. * Add config_keybrd.h for size configurations.
  76. * Add RowScanner_SPI-ShiftRegisters for compact split keyboards up to 32 keys per matrix.
  77. * Add LED_PinNumber for controlling indicator lights by pin number.
  78. 0.4.0 (2016-06-10)
  79. ------------------
  80. * Enhancements
  81. * Add Row_uC
  82. * Add Row_IOE
  83. * Add RowScannerInterface
  84. * Add RowScanner_PinsArray
  85. * Add RowScanner_PinsBitwise
  86. * Add DebouncerInterface
  87. * Add Debouncer_4Samples
  88. * Backward incompatible changes
  89. * Change uC from scanning port arrays to scanning Arduino pins, thereby adding support for:
  90. * Arduino boards, Teensy 3, and Teensy LC microcontrollers
  91. * up to 31x31 matrix capability
  92. * Change IOE from scanning port arrays to scanning single ports.
  93. * Move scanner and debouncer into their own classes.
  94. * Remove Port arrays
  95. 0.3.1 (2016-06-02)
  96. ------------------
  97. * Enhancements
  98. * Add RowBase class
  99. * Add Row::debounce()
  100. 0.3.0 (2016-05-09)
  101. ------------------
  102. * Enhancements
  103. * Add Tutorials
  104. * Backward incompatible changes
  105. * Restructure the project directory to conform to Arduino library manager specifications
  106. * Moved keybrd_DH library extension (for DodoHand) to its own repository
  107. * Moved sketches to examples directory
  108. * Replace Key_Layered dependency on LayerManager with LayerState class
  109. 0.2.0 (2016-02-25)
  110. ------------------
  111. * Enhancements
  112. * Add Port classes for microcontrollers and I/O expanders
  113. * Add DH_2565 sketch with DataHand layout
  114. * Add Sticky mouse button (SMB) for DataHand layout
  115. * Add Supporting documentation
  116. 0.1.0 (2015-02-10)
  117. ------------------
  118. * Enhancements
  119. * The library runs on Teensy 2.0 microcontroller and MCP23018 I/O expander
  120. * Limited to 8x8 matrix, which is enough for compact or split keyboards
  121. * Add first draft of supporting documentation
  122. * Add example keybrd sketches for single-layer, multi-layer, and DataHand layer schemes