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.
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

View File

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

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
}