-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibrary.json
More file actions
33 lines (33 loc) · 936 Bytes
/
Copy pathlibrary.json
File metadata and controls
33 lines (33 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "MultiTapButton",
"version": "1.0.4",
"description": "Simplify your code to identify single taps, double taps (in fact ANY number of consecutive taps), long presses (e.g. button held down for 10 seconds to access a function), button up and button down events, time the button has been pressed. Auto-repeat after button held down for a certain time. The code should run on most microcontrollers as it does not use interrupts or special registers",
"keywords": [
"button",
"switch",
"debounce",
"auto repeat",
"single tap",
"double tap",
"long press",
"press",
"hold"
],
"repository": {
"type": "git",
"url": "https://github.com/RichardLangner/MultiTapButton.git"
},
"authors": [
{
"name": "Richard Langner"
}
],
"license": "MIT",
"frameworks": "arduino",
"platforms": [
"atmelavr",
"espressif8266",
"atmelmegaavr",
"teensy"
]
}