-
Notifications
You must be signed in to change notification settings - Fork 5
/
library.json
42 lines (42 loc) · 1.33 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
{
"name": "MovingAveragePlus",
"version": "4.4.1",
"description": "Moving Average Plus implements a lightweight moving average structure on Arduino. Fully documented. Performance and usability are the two focuses I thought of when creating this library.",
"keywords": "sensors, input, data, processing, analysis, arduino, library, filter, moving average, smooth",
"repository": {
"type": "git",
"url": "https://github.com/AlexandreHiroyuki/MovingAveragePlus"
},
"authors": [
{
"name": "Alexandre Hiroyuki",
"email": "[email protected]",
"url": "https://github.com/AlexandreHiroyuki",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://github.com/AlexandreHiroyuki/MovingAveragePlus",
"frameworks": "arduino",
"platforms": "*",
"headers": [
"MovingAveragePlus.h"
],
"examples": [
{
"name": "Basic Print Example",
"base": "examples/moving_average_print",
"files": [
"moving_average_print.ino"
]
},
{
"name": "Partials Concept Example",
"base": "examples/partials_example",
"files": [
"partials_example.ino"
]
}
],
"srcDir": "src"
}