https://github.com/danixu/buttondebouncer
https://github.com/danixu/buttondebouncer
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danixu/buttondebouncer
- Owner: Danixu
- License: gpl-3.0
- Created: 2021-07-08T20:44:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-08T20:45:20.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T13:44:53.248Z (4 months ago)
- Language: C++
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ButtonDebouncer
Simple non blocking button debouncer, with long press and burst support.By Daniel Carrasco
## What does it do?
This module helps to avoid push bounces that creates ghost activations on your program. Is based on [DebounceEvent module](https://github.com/xoseperez/debounceevent), and was modified to don't block the program during the debounce waiting time, and also provides long press and burst support.## How to use it
To see how to use it, just go to examples folder and check the project/s## ToDo
Nothing for now