-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
57 lines (54 loc) · 1.19 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
{
"name": "Environment",
"version": "5.9.3",
"keywords": "Sensor, Environment, SHT21, HDC2010, TSL2561, MPL3115, Temperature, Humidity, Pressure, Light",
"description": "Function measures the value of given sensors. Library is used data mining for stable sensor data. Also cleared for lite use.",
"authors": {
"name": "Mehmet Gunce Akkoyun",
"email": "[email protected]",
"url": "https://github.com/akkoyun"
},
"license": "MIT",
"frameworks": "arduino",
"headers": "Environment.h",
"platforms": [
"atmelavr",
"atmelmegaavr"
],
"repository": {
"type": "git",
"url": "https://github.com/akkoyun/Environment.git"
},
"dependencies": [
{
"owner": "akkoyun",
"name": "I2C_Functions"
},
{
"owner": "akkoyun",
"name": "Statistical"
}
],
"examples": [
{
"name": "HDC2010 T/H Read",
"base": "examples/HDC2010",
"files": ["HDC2010.ino"]
},
{
"name": "MPL3115A2 Pressure Measurement",
"base": "examples/MPL3115A2",
"files": ["MPL3115A2.ino"]
},
{
"name": "SI1145 Light Measurement",
"base": "examples/SI1145",
"files": ["SI1145.ino"]
},
{
"name": "Analog Measurement",
"base": "examples/Analog",
"files": ["Analog.ino"]
}
]
}