-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
42 lines (42 loc) · 863 Bytes
/
library.json
File metadata and controls
42 lines (42 loc) · 863 Bytes
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
{
"name": "ESPMemoryMonitor",
"version": "1.0.1",
"description": "A lightweight heap and stack monitor for ESP32 firmware",
"keywords": [
"esp32",
"arduino",
"heap",
"memory",
"monitor"
],
"homepage": "https://github.com/ESPToolKit/esp-memoryMonitor",
"repository": {
"type": "git",
"url": "https://github.com/ESPToolKit/esp-memoryMonitor.git"
},
"license": "MIT",
"authors": [
{
"name": "zekageri"
}
],
"frameworks": ["arduino"],
"platforms": ["espressif32"],
"dependencies": [
{
"name": "ArduinoJson",
"version": "^7.0.0"
},
{
"name": "ESPBufferManager",
"version": "https://github.com/ESPToolKit/esp-buffer-manager.git"
}
],
"headers": ["ESPMemoryMonitor.h"],
"build": {
"flags": [
"-std=gnu++17",
"-fno-exceptions"
]
}
}