-
Notifications
You must be signed in to change notification settings - Fork 73
/
library.json
40 lines (40 loc) · 1.11 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
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "esp32_smartdisplay",
"version": "3.0.0",
"description": "LVGL v9.2 driver for Sunton ESP32 Cheap Yellow Display display boards",
"keywords": "LVGL Sunton CYD LCD TFT Touch",
"repository": {
"type": "git",
"url": "https://github.com/rzeldent/esp32-smartdisplay"
},
"build": {
"srcDir": "src/",
"includeDir": "include/",
"flags": [
"'-D ESP_LCD_PANEL_IO_ADDITIONS_VER_MAJOR=1'",
"'-D ESP_LCD_PANEL_IO_ADDITIONS_VER_MINOR=0'",
"'-D ESP_LCD_PANEL_IO_ADDITIONS_VER_PATCH=1'"
]
},
"export": {
"exclude": [
"**/.*",
"test/**/*",
"assets/**/*",
"boards/**/*"
]
},
"authors": [
{
"name": "Rene Zeldenthuis",
"maintainer": true
}
],
"license": "MIT",
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": {
"lvgl/lvgl": "^9.2.0"
}
}