-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.2.0 - added min & max bounds, added changelog
- Loading branch information
1 parent
1e20512
commit f85333a
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## Unreleased | ||
- none, yet | ||
|
||
|
||
## [1.2.0] - 2020-04-16 | ||
- Created and added CHANGELOG.md | ||
- Added optional minimum and maximum bounds to constructor (as suggested by [cornfeedhobo](https://github.com/cornfeedhobo) in issue [#9](https://github.com/LennartHennigs/ESPRotary/issues/9)) | ||
|
||
|
||
## [1.1.2] - 2020-03-31 | ||
- Simplified example | ||
|
||
|
||
## [1.1.1] - 2020-03-30 | ||
- Removed ```yield()``` in main ```loop()``` since it caused some problems | ||
|
||
|
||
## [1.1.0] - 2020-03-27 | ||
- Added ```yield()``` to the main ```loop()``` | ||
- Updated the example (as suggested by [per1234](https://github.com/per1234)) | ||
|
||
## [1.0.0] - 2017-11-14 | ||
- Added option to set number of clicks to constructor (as suggested by [svititom](https://github.com/LennartHennigs/ESPRotary/commit/95e86b171e8d1489cd603d493898c5ea516935db)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=ESP Rotary | ||
version=1.1.1 | ||
version=1.2.0 | ||
author=Lennart Hennigs | ||
maintainer=Lennart Hennigs <[email protected]> | ||
sentence=ESP8266/Arduino Library for reading rotary encoder values. | ||
|