Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
increased version
  • Loading branch information
IPdotSetAF committed Sep 5, 2024
1 parent e1f8115 commit 3b1f73c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# EZButton
Arduino library that transforms raw button/touch inputs into events easily.

Subscribe to Pressed/Released/Hold/HoldReleased events with as many buttons as you want. Customize time thresholds. Works with any button read method.
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.

> [!IMPORTANT]
> If you found this library helpful, please consider leaving a Star⭐
Expand All @@ -34,7 +34,7 @@ Subscribe to Pressed/Released/Hold/HoldReleased events with as many buttons as y
- Hold
- Hold Released
- Unlimited Buttons/Touches: You can configure as many buttons as you need.
- Input signal Debounceing.
- Input signal Debouncing.
- Customizability: You can change any of the time thresholds to customize your user experience.
- `HoldThreshold`: The time it takes before the first `HOLD` event is executed after the button is held down.
- `HoldInterval`: The Time Interval that corresponds to the `HOLD` event being executed repeatedly after the first `HOLD` event was registered.
Expand Down
7 changes: 4 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "EZButton",
"version": "2.3.2",
"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.",
"version": "2.4.0",
"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.",
"keywords":
[
"Button",
Expand All @@ -11,7 +11,8 @@
"Hold",
"Press",
"Release",
"HoldRelease"
"HoldRelease",
"Debouncing"
],
"repository":
{
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=EZButton
version=2.3.2
version=2.4.0
author=Mohammad Mahdi Nazari <[email protected]>
maintainer=Mohammad Mahdi Nazari <[email protected]>
sentence=Transform raw button/touch inputs into events easily.
paragraph=Subscibe to Pressed/Released/Hold/HoldReleased events of as many buttons as you want. Customize time thresholds. Works with any button read method.
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.
category=Signal Input/Output
url=https://github.com/IPdotSetAF/EZButton
architectures=*
Expand Down

0 comments on commit 3b1f73c

Please sign in to comment.