-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
127 lines (124 loc) · 3.2 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "robusto",
"version": "1.2.26",
"description": "The Robusto framework.",
"keywords": "framework, microcontrollers",
"repository": {
"type": "git",
"url": "https://github.com/RobustoFramework/Robusto"
},
"authors": [
{
"name": "Nicklas Borjessson",
"email": "[email protected]",
"url": "https://optimalbpm.se",
"maintainer": true
}
],
"license": "BSD-2-Clause",
"homepage": "https://robustoframework.github.io/Robusto/index.html",
"dependencies": [
{
"name": "esp_modem",
"version": "https://github.com/RobustoFramework/Robusto/releases/download/v1.0.0/esp_modem_1.1.0.zip",
"platforms": ["espressif32"]
},
{
"name": "lvgl/lvgl",
"version": "~8.3.0",
"platforms": ["espressif32"]
},
{
"name": "esp_lvgl_port",
"version": "https://github.com/RobustoFramework/Robusto/releases/download/v1.0.0/esp_lvgl_port_1.4.0.zip",
"platforms": ["espressif32"]
},
{
"name": "RadioLib",
"version": "jgromes/RadioLib@^6.6.0",
"platforms": ["espressif32"]
}
],
"frameworks": "*",
"platforms": "*",
"export" : {
"include": [
"components/robusto/*",
"examples/*",
"library.json",
"README.md"
]
},
"examples": [
{
"name": "Camera",
"base": "examples/camera",
"files": [
"camera.c",
"camera.h",
"camera_pins.h",
"README.md"
]
},
{
"name": "Conductor",
"base": "examples/conductor",
"files": [
"conductor_client.c",
"conductor_client.h",
"conductor_server.c",
"conductor_server.h",
"README.md"
]
},
{
"name": "Flash",
"base": "examples/flash",
"files": [
"flash.c",
"flash.h",
"README.md"
]
},
{
"name": "Hello",
"base": "examples/hello",
"files": [
"hello_service.c",
"hello_service.h",
"README.md"
]
},
{
"name": "Input",
"base": "examples/input",
"files": [
"ladder_buttons.c",
"ladder_buttons.h",
"README.md"
]
},
{
"name": "UI",
"base": "examples/ui",
"files": [
"hello_ui.c",
"hello_ui.h",
"README.md"
]
},
{
"name": "UMTS",
"base": "examples/umts",
"files": [
"umts.c",
"umts.h",
"README.md"
]
}
],
"build": {
"srcDir": "components/robusto",
"includeDir": "components/robusto/include"
}
}