From 03cfd8227afc9c699d65196059b27467abfdff4f Mon Sep 17 00:00:00 2001 From: MicroBeaut Date: Fri, 22 Dec 2023 21:01:27 +0700 Subject: [PATCH] modified: library.properties modified: src/ADebouncer.cpp modified: src/ADebouncer.h --- library.properties | 6 +++--- src/ADebouncer.cpp | 2 +- src/ADebouncer.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/library.properties b/library.properties index ae6bbc2..136ee2c 100644 --- a/library.properties +++ b/library.properties @@ -1,7 +1,7 @@ name=ADebouncer -version=1.0.0 -author=Montree Hamarn, Natvalun Tavepontakul -maintainer=Montree Hamarn +version=1.1.0 +author=MicroBeaut +maintainer=MicroBeaut sentence=Advanced Debouncer Library for Arduino. paragraph=The advanced debouncer removes the resulting ripple signal and provides a clean transition at its output with delayed and instant modes. category=Other diff --git a/src/ADebouncer.cpp b/src/ADebouncer.cpp index 100191e..e561b96 100644 --- a/src/ADebouncer.cpp +++ b/src/ADebouncer.cpp @@ -62,4 +62,4 @@ boolean ADebouncer::rising() { boolean ADebouncer::falling() { return _falling; -} +} \ No newline at end of file diff --git a/src/ADebouncer.h b/src/ADebouncer.h index c4e92a6..9e96df9 100644 --- a/src/ADebouncer.h +++ b/src/ADebouncer.h @@ -12,7 +12,7 @@ #include -#define ADEBOUNCER_VERSION "1.0.0" +#define ADEBOUNCER_VERSION "1.1.0" #define ADEBOUNCER_AUTHOR "MicroBeaut" enum debounce_t : boolean {DELAYED, INSTANT};