Skip to content

Commit a31da6d

Browse files
committed
Add PlatformIO library manager manifest
1 parent dcd55be commit a31da6d

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

extra_script.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Import('env')
2+
from os.path import join, realpath
3+
4+
env.Append(
5+
LIBPATH=[realpath(join('src', env.get('BOARD_MCU')))],
6+
LIBS=['algobsec']
7+
)

library.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "BSEC Software Library",
3+
"description": "Bosch Sensortec Environmental Cluster (BSEC) Software library for use with the BME680 has been conceptualized to provide higher-level signal processing and fusion for the BME680. The library receives compensated sensor values from the sensor API. It processes the BME680 signals to provide the requested sensor outputs.",
4+
"homepage": "https://www.bosch-sensortec.com/software-tools/software/bsec/",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/BoschSensortec/BSEC-Arduino-library"
8+
},
9+
"version": "1.5.1474",
10+
"authors": {
11+
"name": "Bosch Sensortec",
12+
"email": "[email protected]"
13+
},
14+
"frameworks": "arduino",
15+
"platforms": "*",
16+
"build": {
17+
"includeDir": "src/inc",
18+
"extraScript": "extra_script.py"
19+
},
20+
"examples": [
21+
{
22+
"name": "Basic usage",
23+
"base": "examples/basic",
24+
"files": ["basic.ino"]
25+
},
26+
{
27+
"name": "Basic usage with config state saves",
28+
"base": "examples/basic_config_state",
29+
"files": ["basic_config_state.ino"]
30+
},
31+
{
32+
"name": "Basic usage with config state saves and multiple sensors",
33+
"base": "examples/basic_config_state_multi",
34+
"files": ["basic_config_state_multi.ino"]
35+
},
36+
{
37+
"name": "Basic usage with config state saves and triggered ULP plus measurements",
38+
"base": "examples/basic_config_state_ulp_plus",
39+
"files": ["basic_config_state_ulp_plus.ino"]
40+
},
41+
{
42+
"name": "ESP32 deep sleep",
43+
"base": "examples/esp32DeepSleep",
44+
"files": ["esp32DeepSleep.ino"]
45+
}
46+
]
47+
}

0 commit comments

Comments
 (0)