Skip to content

Commit 3b1f73c

Browse files
committed
updated readme
increased version
1 parent e1f8115 commit 3b1f73c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# EZButton
1010
Arduino library that transforms raw button/touch inputs into events easily.
1111

12-
Subscribe to Pressed/Released/Hold/HoldReleased events with as many buttons as you want. Customize time thresholds. Works with any button read method.
12+
Subscribe to Pressed/Released/Hold/HoldReleased events with as many buttons as you want. Customize time thresholds and debouncing. Works with any button read method.
1313

1414
> [!IMPORTANT]
1515
> If you found this library helpful, please consider leaving a Star⭐
@@ -34,7 +34,7 @@ Subscribe to Pressed/Released/Hold/HoldReleased events with as many buttons as y
3434
- Hold
3535
- Hold Released
3636
- Unlimited Buttons/Touches: You can configure as many buttons as you need.
37-
- Input signal Debounceing.
37+
- Input signal Debouncing.
3838
- Customizability: You can change any of the time thresholds to customize your user experience.
3939
- `HoldThreshold`: The time it takes before the first `HOLD` event is executed after the button is held down.
4040
- `HoldInterval`: The Time Interval that corresponds to the `HOLD` event being executed repeatedly after the first `HOLD` event was registered.

library.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "EZButton",
3-
"version": "2.3.2",
4-
"description": "Transform raw button/touch inputs into events easily. Subscibe to Pressed/Released/Hold/HoldReleased events of as many buttons as you want. Customize time thresholds. Works with any button read method.",
3+
"version": "2.4.0",
4+
"description": "Transform raw button/touch inputs into events easily. Subscibe to Pressed/Released/Hold/HoldReleased events of as many buttons as you want. Customize time thresholds and debouncing. Works with any button read method.",
55
"keywords":
66
[
77
"Button",
@@ -11,7 +11,8 @@
1111
"Hold",
1212
"Press",
1313
"Release",
14-
"HoldRelease"
14+
"HoldRelease",
15+
"Debouncing"
1516
],
1617
"repository":
1718
{

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=EZButton
2-
version=2.3.2
2+
version=2.4.0
33
author=Mohammad Mahdi Nazari <ipdotsetaf@gmail.com>
44
maintainer=Mohammad Mahdi Nazari <ipdotsetaf@gmail.com>
55
sentence=Transform raw button/touch inputs into events easily.
6-
paragraph=Subscibe to Pressed/Released/Hold/HoldReleased events of as many buttons as you want. Customize time thresholds. Works with any button read method.
6+
paragraph=Subscibe to Pressed/Released/Hold/HoldReleased events of as many buttons as you want. Customize time thresholds and debouncing. Works with any button read method.
77
category=Signal Input/Output
88
url=https://github.com/IPdotSetAF/EZButton
99
architectures=*

0 commit comments

Comments
 (0)