forked from rzeldent/esp32-smartdisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
41 lines (41 loc) · 1.32 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
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "esp32_smartdisplay",
"version": "2.0.2",
"description": "LVGL 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": [
"-DESP_LCD_ST7796_VER_MAJOR=1",
"-DESP_LCD_ST7796_VER_MINOR=2",
"-DESP_LCD_ST7796_VER_PATCH=0",
"-DESP_LCD_ILI9341_VER_MAJOR=1",
"-DESP_LCD_ILI9341_VER_MINOR=2",
"-DESP_LCD_ILI9341_VER_PATCH=0",
"-DESP_LCD_GC9A01_VER_MAJOR=1",
"-DESP_LCD_GC9A01_VER_MINOR=2",
"-DESP_LCD_GC9A01_VER_PATCH=0",
"-DCONFIG_ESP_LCD_TOUCH_MAX_POINTS=1",
"-DCONFIG_XPT2046_CONVERT_ADC_TO_COORDS",
"-DCONFIG_XPT2046_Z_THRESHOLD=600"
]
},
"authors": [
{
"name": "Rene Zeldenthuis",
"maintainer": true
}
],
"license": "MIT",
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": {
"lvgl/lvgl": "*"
}
}