Archived
1
0
This commit is contained in:
wolfv6 2016-06-02 15:06:26 -06:00
parent d177dbfa97
commit 05b4f875eb
3 changed files with 7 additions and 6 deletions

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. 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/). 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] ## [Unreleased][unreleased]
## [0.3.1] - 2016-05-30 ## [0.3.1] - 2016-06-02
### Changed ### Added
* Rename StateLayers to LayerState * RowBase class
* Row::debounce()
## [0.3.0] - 2016-05-09 ## [0.3.0] - 2016-05-09
### Changed ### Changed

View File

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

View File

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