-
Notifications
You must be signed in to change notification settings - Fork 5
/
library.json
52 lines (52 loc) · 1.25 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
{
"name": "S8_UART",
"version": "1.0.2",
"description": "Arduino library to control SenseAir S8 CO2 sensor using UART communication",
"keywords": "co2, carbon dioxide, sensor, senseair, s8, air quality, environment, uart, serial",
"repository":
{
"type": "git",
"url": "https://github.com/jcomas/S8_UART.git"
},
"authors":
[
{
"name": "Josep Comas",
"email": "[email protected]",
"url": "https://github.com/jcomas",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://github.com/jcomas/S8_UART",
"frameworks": "arduino",
"platforms": "*",
"examples":
[
{
"name": "Get CO2 value",
"base": "examples/co2",
"files": ["co2.cpp"]
},
{
"name": "Get information about the sensor",
"base": "examples/info",
"files": ["info.cpp"]
},
{
"name": "Manual calibration",
"base": "examples/calibration/manual",
"files": ["manual.cpp"]
},
{
"name": "ABC - Automatic calibration",
"base": "examples/calibration/automatic",
"files": ["automatic.cpp"]
},
{
"name": "Check the health of CO2 sensor",
"base": "examples/diag",
"files": ["diag.cpp"]
}
]
}