Browse Source

document

tags/v0.5.0
wolfv6 8 years ago
parent
commit
05b4f875eb
3 changed files with 7 additions and 6 deletions
  1. 5
    4
      doc/CHANGELOG.md
  2. 1
    1
      src/LayerStateInterface.h
  3. 1
    1
      src/RowPort_PCA9655E.cpp

+ 5
- 4
doc/CHANGELOG.md View File

@@ -1,4 +1,4 @@
# Change Log
# Change Log for keybrd library
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/).
@@ -7,9 +7,10 @@ keybrd version 1.0.0 will be released when the public API is stable.
## [Unreleased][unreleased]
## [0.3.1] - 2016-05-30
### Changed
* Rename StateLayers to LayerState
## [0.3.1] - 2016-06-02
### Added
* RowBase class
* Row::debounce()
## [0.3.0] - 2016-05-09
### Changed

+ 1
- 1
src/LayerStateInterface.h View File

@@ -1,7 +1,7 @@
#ifndef LAYERSTATEINTERFACE_H
#define LAYERSTATEINTERFACE_H
/* LayerStateInterface in an interface class
/* LayerStateInterface is an interface class
*/
class LayerStateInterface
{

+ 1
- 1
src/RowPort_PCA9655E.cpp View File

@@ -43,5 +43,5 @@ void RowPort_PCA9655E::setActivePinHigh(const uint8_t activePin)
Wire.write(outputByteCommand);
Wire.write(port.outputVal |= activePin);
Wire.endTransmission();
//todo delayMicroseconds(1500);
//todo delayMicroseconds(1500); still 4*bb w/o debouncer prints IOE rows sporadically
}