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 5.1KB

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