-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
99 lines (99 loc) · 2.01 KB
/
library.json
File metadata and controls
99 lines (99 loc) · 2.01 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "PlexusSDK",
"version": "0.5.6",
"description": "Minimal footprint IoT telemetry SDK. Stream sensor data to a real-time dashboard from ESP32, STM32, and Arduino. ~1.5KB RAM, zero dependencies, built-in retry and buffering.",
"keywords": [
"telemetry",
"iot",
"embedded",
"esp32",
"stm32",
"arduino",
"monitoring",
"dashboard",
"sensors",
"bme280",
"real-time"
],
"repository": {
"type": "git",
"url": "https://github.com/plexus-oss/c-sdk.git"
},
"authors": [
{
"name": "Plexus Team",
"url": "https://plexus.company"
}
],
"license": "Apache-2.0",
"homepage": "https://plexus.company",
"frameworks": [
"arduino",
"espidf",
"stm32cube"
],
"platforms": [
"espressif32",
"espressif8266",
"ststm32"
],
"headers": "plexus.hpp",
"build": {
"srcDir": ".",
"srcFilter": [
"+<src/>",
"+<hal/arduino/>",
"-<tests/>",
"-<examples/>",
"-<build-*/>",
"-<hal/esp32/>",
"-<hal/stm32/>",
"-<hal/template/>"
],
"includeDir": "src",
"flags": [
"-DPLEXUS_MAX_METRICS=32",
"-DPLEXUS_JSON_BUFFER_SIZE=2048"
]
},
"export": {
"include": [
"src/*.h",
"src/*.hpp",
"src/*",
"hal/*",
"examples/*",
"CMakeLists.txt",
"README.md",
"LICENSE"
]
},
"examples": [
{
"name": "BasicTelemetry",
"base": "examples/BasicTelemetry",
"files": ["BasicTelemetry.ino"]
},
{
"name": "BME280_Dashboard",
"base": "examples/BME280_Dashboard",
"files": ["BME280_Dashboard.ino"]
},
{
"name": "WiFiReconnect",
"base": "examples/WiFiReconnect",
"files": ["WiFiReconnect.ino"]
},
{
"name": "SessionRecording",
"base": "examples/SessionRecording",
"files": ["SessionRecording.ino"]
},
{
"name": "esp32_basic",
"base": "examples/esp32_basic",
"files": ["main.c"]
}
],
"dependencies": {}
}