We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b046c commit fbc64d1Copy full SHA for fbc64d1
3 files changed
CHANGELOG.md
@@ -2,6 +2,11 @@
2
3
All notable changes to this project will be documented in this file starting 2021.
4
5
+## [2.0.1] - 2021-01-31
6
+
7
+* Compiler warning removed
8
+* Documentation
9
10
## [2.0.0] - 2021-01-22
11
12
* CHANGELOG created.
library.properties
@@ -1,5 +1,5 @@
1
name=OneButton
-version=2.0.0
+version=2.0.1
author=Matthias Hertel, mathertel@hotmail.com
maintainer=Matthias Hertel <http://www.mathertel.de>
sentence=Arduino library for improving the usage of a singe input button.
src/OneButton.cpp
@@ -320,6 +320,10 @@ void OneButton::tick(bool activeLevel)
320
reset();
321
}
322
break;
323
324
+ default:
325
+ // nothing to do.
326
+ break;
327
} // if
328
329
} // OneButton.tick()
0 commit comments