-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibrary.json
55 lines (55 loc) · 998 Bytes
/
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
{
"name": "Statistical",
"version": "2.5.4",
"keywords": "Statistical, Max, Min, Average, Regression, Data, Sensor, Slope, Offset",
"description": "Function calculates statistical parameters of data stream and array",
"authors":
{
"name": "Mehmet Gunce Akkoyun",
"email": "[email protected]",
"url": "https://github.com/akkoyun"
},
"license": "MIT",
"frameworks": "arduino",
"headers": "Statistical.h",
"platforms":
[
"atmelavr",
"atmelmegaavr"
],
"repository":
{
"type": "git",
"url": "https://github.com/akkoyun/Statistical.git"
},
"examples": [
{
"name": "Array",
"base": "examples/Array/",
"files": [
"Array.ino"
]
},
{
"name": "Linear Regression",
"base": "examples/Linear_Regression/",
"files": [
"Linear_Regression.ino"
]
},
{
"name": "Stream",
"base": "examples/Stream/",
"files": [
"Stream.ino"
]
},
{
"name": "Vector",
"base": "examples/Vector/",
"files": [
"Vector.ino"
]
}
]
}