forked from rzeldent/esp32-smartdisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
47 lines (47 loc) · 1.65 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
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "esp32_smartdisplay",
"version": "2.0.7",
"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": [
"-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'",
"-D'ESP_LCD_ST7701_VER_MAJOR=1'",
"-D'ESP_LCD_ST7701_VER_MINOR=0'",
"-D'ESP_LCD_ST7701_VER_PATCH=0'",
"-D'ESP_LCD_ST7796_VER_MAJOR=1'",
"-D'ESP_LCD_ST7796_VER_MINOR=2'",
"-D'ESP_LCD_ST7796_VER_PATCH=0'",
"-D'ESP_LCD_ILI9341_VER_MAJOR=1'",
"-D'ESP_LCD_ILI9341_VER_MINOR=2'",
"-D'ESP_LCD_ILI9341_VER_PATCH=0'",
"-D'ESP_LCD_GC9A01_VER_MAJOR=1'",
"-D'ESP_LCD_GC9A01_VER_MINOR=2'",
"-D'ESP_LCD_GC9A01_VER_PATCH=0'",
"-D'CONFIG_ESP_LCD_TOUCH_MAX_POINTS=1'",
"-D'CONFIG_XPT2046_CONVERT_ADC_TO_COORDS'",
"-D'CONFIG_XPT2046_Z_THRESHOLD=600'"
]
},
"authors": [
{
"name": "Rene Zeldenthuis",
"maintainer": true
}
],
"license": "MIT",
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": {
"lvgl/lvgl": "^8.3.9"
}
}