-
Notifications
You must be signed in to change notification settings - Fork 1
/
library.json
58 lines (58 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "DataTome",
"version": "1.8.1",
"description": "Data analysis and filtering using time series for embedded devices (IoT). All in a single C++ library, Data Tome. Includes Simple Moving Average, Exponential Moving Average, Simple Moving Median, Cumulative Moving Average, Standard Deviation, and more.",
"keywords": "filter, moving average, exponential moving average, median, mean, standard, deviation, arduino, library, smooth, signal, sensors, input, data, processing, analysis, partial, tome, moving-average, moving, average, exponential, cumulative",
"repository": {
"type": "git",
"url": "https://github.com/AlexandreHiroyuki/DataTome"
},
"authors": [
{
"name": "Alexandre Hiroyuki",
"email": "[email protected]",
"url": "https://github.com/AlexandreHiroyuki",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://github.com/AlexandreHiroyuki/DataTome",
"frameworks": "arduino",
"platforms": "*",
"headers": [
"DataTome.h",
"DataTomeAnalysis.h",
"DataTomeCumulative.h",
"DataTomeExpAvg",
"DataTomeMvAvg.h",
"DataTomeUtils.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"
]
}
],
"export": {
"exclude": [
"test/",
".github",
".gitignore",
".vscode",
"build_test.cpp",
"docs/icon.png"
]
},
"srcDir": "src"
}