Skip to content

Commit ecfaa68

Browse files
committed
Add library property files
1 parent e305f1c commit ecfaa68

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

library.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "EasyButton",
3+
"keywords": "IO, button, sensor, arduino",
4+
"description": "EasyButton is an small Arduino library for debouncing momentary contact switches like tactile buttons. It uses events and callbacks to trigger actions when a button is pressed once or held for a given duration. It also provides a sequence counter to be able to rise an event when a given pattern of presses has been matched.",
5+
"version": "2.0.1",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/evert-arias/EasyButton"
9+
},
10+
"url": "https://easybtn.earias.me",
11+
"frameworks": "arduino",
12+
"platforms": "espressif8266, espressif32",
13+
"dependencies": [
14+
{ "megunolink/MegunoLink": "^1.33"}
15+
],
16+
"authors": [
17+
{
18+
"name": "Evert Arias",
19+
"email": "[email protected]"
20+
},
21+
{
22+
"name": "Felix A. Epp",
23+
"url": "https://github.com/eppfel"
24+
}
25+
]
26+
}
27+

library.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ sentence=Arduino library for debouncing momentary contact switches, detect press
66
paragraph=EasyButton is an small Arduino library for debouncing momentary contact switches like tactile buttons. It uses events and callbacks to trigger actions when a button is pressed once or held for a given duration. It also provides a sequence counter to be able to rise an event when a given pattern of presses has been matched.
77
category=Signal Input/Output
88
url=https://easybtn.earias.me
9-
architectures=*
9+
architectures=*
10+
depends=MegunoLink

0 commit comments

Comments
 (0)