Skip to content

Commit 03cfd82

Browse files
committed
modified: library.properties
modified: src/ADebouncer.cpp modified: src/ADebouncer.h
1 parent 348b964 commit 03cfd82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name=ADebouncer
2-
version=1.0.0
3-
author=Montree Hamarn, Natvalun Tavepontakul
4-
maintainer=Montree Hamarn<montree.hamarn@gmail.com>
2+
version=1.1.0
3+
author=MicroBeaut
4+
maintainer=MicroBeaut
55
sentence=Advanced Debouncer Library for Arduino.
66
paragraph=The advanced debouncer removes the resulting ripple signal and provides a clean transition at its output with delayed and instant modes.
77
category=Other

src/ADebouncer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ boolean ADebouncer::rising() {
6262

6363
boolean ADebouncer::falling() {
6464
return _falling;
65-
}
65+
}

src/ADebouncer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#include <Arduino.h>
1414

15-
#define ADEBOUNCER_VERSION "1.0.0"
15+
#define ADEBOUNCER_VERSION "1.1.0"
1616
#define ADEBOUNCER_AUTHOR "MicroBeaut"
1717

1818
enum debounce_t : boolean {DELAYED, INSTANT};

0 commit comments

Comments
 (0)