-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlibrary.json
43 lines (43 loc) · 1.22 KB
/
library.json
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
34
35
36
37
38
39
40
41
42
43
{
"name": "ESP32RotaryEncoder",
"keywords": "arduino, rotary encoder, button, gpio, interrupts",
"description": "ESP32RotaryEncoder is a small library that makes implementing a rotary encoder on ESP32 easy. It uses interrupts for instant detection of knob turns or button presses without blocking or other delays.",
"version": "1.1.0",
"authors": [
{
"name": "Matthew Clark",
"url": "https://github.com/MaffooClock",
"maintainer": true
}
],
"repository": {
"type": "git",
"url": "https://github.com/MaffooClock/ESP32RotaryEncoder"
},
"headers": "ESP32RotaryEncoder.h",
"examples": [
{
"name": "Basic Example",
"base": "examples/BasicRotaryEncoder",
"files": [ "BasicRotaryEncoder.ino" ]
},
{
"name": "Two Rotary Encoders",
"base": "examples/TwoRotaryEncoders",
"files": [ "TwoRotaryEncoders.ino" ]
},
{
"name": "Left or Right",
"base": "examples/LeftOrRight",
"files": [ "LeftOrRight.ino" ]
},
{
"name": "Button Press Duration",
"base": "examples/ButtonPressDuration",
"files": [ "ButtonPressDuration.ino" ]
}
],
"frameworks": "arduino",
"platforms": "espressif32",
"license": "MIT"
}