2016-06-02 21:06:26 +00:00
|
|
|
# Change Log for keybrd library
|
2016-05-09 14:05:08 +00:00
|
|
|
All notable changes to the keybrd project will be documented in this file.
|
|
|
|
This project adheres to [Semantic Versioning 2.0.0](http://semver.org/).
|
|
|
|
|
2016-05-09 19:41:29 +00:00
|
|
|
keybrd version 0.x.x is for initial development. The public API should not be considered stable.
|
|
|
|
keybrd version 1.0.0 will be released when the public API is stable.
|
2016-05-09 14:05:08 +00:00
|
|
|
|
2016-06-30 10:25:19 +00:00
|
|
|
## [Unreleased]
|
2016-05-09 14:05:08 +00:00
|
|
|
|
2016-06-22 02:40:35 +00:00
|
|
|
## [0.3.2] - 2016-06-21
|
|
|
|
### Added
|
|
|
|
config_keybrd.h for size configurations.
|
|
|
|
RowScanner_SPI-ShiftRegisters for compact split keyboards up to 32 keys per matrix.
|
|
|
|
LED_PinNumber for controlling indicator lights by pin number.
|
|
|
|
|
2016-06-11 02:12:56 +00:00
|
|
|
## [0.3.2] - 2016-06-10
|
|
|
|
### Changed
|
2016-06-22 02:40:35 +00:00
|
|
|
* Changed uC from scanning port arrays to scanning Arduino pins, thereby adding support for:
|
|
|
|
Arduino boards, Teensy 3, and Teensy LC micro controllers
|
|
|
|
up to 31x31 matrix capability
|
2016-06-11 02:12:56 +00:00
|
|
|
* Changed IOE from scanning port arrays to scanning single ports.
|
|
|
|
* Moved scanner and debouncer into their own classes.
|
|
|
|
|
|
|
|
### Added
|
|
|
|
* Row_uC
|
|
|
|
* Row_IOE
|
|
|
|
* RowScannerInterface
|
|
|
|
* RowScanner_PinsArray
|
|
|
|
* RowScanner_PinsBitwise
|
|
|
|
* DebouncerInterface
|
|
|
|
* Debouncer_4Samples
|
|
|
|
|
|
|
|
### Removed
|
|
|
|
* Port arrays
|
|
|
|
|
2016-06-02 21:06:26 +00:00
|
|
|
## [0.3.1] - 2016-06-02
|
|
|
|
### Added
|
|
|
|
* RowBase class
|
|
|
|
* Row::debounce()
|
2016-05-30 03:23:33 +00:00
|
|
|
|
2016-05-09 14:05:08 +00:00
|
|
|
## [0.3.0] - 2016-05-09
|
|
|
|
### Changed
|
|
|
|
* Restructured the project directory to conform to Arduino library manager specifications
|
2016-05-09 19:41:29 +00:00
|
|
|
* Moved keybrd_DH library extension (for DodoHand) to its own repository
|
2016-05-09 14:05:08 +00:00
|
|
|
* Moved sketches to examples directory
|
2016-05-28 21:16:32 +00:00
|
|
|
* Replaced Key_Layered dependency on LayerManager with LayerState class
|
2016-05-09 14:05:08 +00:00
|
|
|
|
|
|
|
### Added
|
2016-05-09 19:41:29 +00:00
|
|
|
* Tutorials
|
2016-05-09 14:05:08 +00:00
|
|
|
|
|
|
|
## [0.2.0] - 2016-02-25
|
|
|
|
### Added
|
|
|
|
* Port classes for micro-controllers and I/O expanders
|
|
|
|
* DH_2565 sketch with DataHand layout
|
|
|
|
* Sticky mouse button (SMB) for DataHand layout
|
|
|
|
* Supporting documentation
|
|
|
|
|
|
|
|
## [0.1.0] - 2015-02-10
|
|
|
|
### Added
|
|
|
|
* The library runs on Teensy 2.0 microcontroller and MCP23018 I/O expander
|
|
|
|
* Limited to 8x8 matrix, which is enough for compact or split keyboards
|
|
|
|
* First draft of supporting documentation
|
|
|
|
* Example keybrd sketches for single-layer, multi-layer, and DataHand layer schemes
|
|
|
|
|