generated from lvgl/board_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
67 lines (67 loc) · 2.93 KB
/
manifest.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
{
"name": "M5Stack CoreS3",
"maintainer": "LVGL",
"hostOperatingsystem": [
"Linux",
"Windows",
"MacOS"
],
"environment": [
"ESP-IDF"
],
"hardware": {
"chipVendor": "Espressif",
"manufacturer": "Espressif",
"specs": {
"MCU": "ESP32-S3",
"RAM": "512 KB internal SRAM, 8/16 MB external PSRAM",
"Flash": "2/4/8/16 MB",
"GPU": "None",
"Resolution": "320x240",
"Display Size": "2.4”",
"Interface": "RGB LCD",
"Color Depth": "24-bit",
"DPI": "166 px/inch",
"Touch Pad": "Capacitive (GT911)"
}
},
"description": "Espressif Systems ESP32-S3-BOX-3 Next-Generation Open-Source AIoT Kit is based on the ESP32-S3 Wi-Fi + BLUETOOTH® 5 (LE) SoC with AI acceleration capabilities. In addition to the ESP32-S3 SoCs 512KB SRAM, the ESP32-S3-BOX-3 comes with 16MB of Quad flash and 16MB of Octal PSRAM. ESP32-S3-BOX-3 features a 2.4-inch (320 x 240) SPI touchscreen, two digital microphones, a speaker, a Type-C port, and a high-density PCIe connector for hardware extensibility. A speech-recognition framework provides users with an offline AI voice assistant with far-field voice interaction, continuous recognition, wake-up interruption, and the ability to recognize over 200 customizable command words. The device can also be transformed into an online AI chatbot using advanced AIGC development platforms like OpenAI.",
"shortDescription": "LVGL ported to ESP32-S3-BOX-3 with using Espressif BSP. ",
"urlToClone": "https://github.com/lvgl//lv_port_espressif_esp-box-3",
"logos": ["https://raw.githubusercontent.com/lvgl/project-creator/master/meta/images/espressif/logo.svg"],
"branches": [
"release/v9.2"
],
"getStartedInstructions": "1. Set up [ESP-IDF](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/index.html)\n2. `idf.py -p <COMx or /dev/ttyx> flash monitor`",
"settings": [
{
"type": "dropdown",
"label": "Show performance monitor",
"options": [
{
"name": "Yes",
"value": "1",
"default": "true"
},
{
"name": "No",
"value": "0"
}
],
"actions": [
{
"ifValue": "1",
"toReplace": "CONFIG_LV_USE_PERF_MONITOR=.+",
"newContent": "CONFIG_LV_USE_PERF_MONITOR=y",
"filePath": "sdkconfig.defaults"
},
{
"ifValue": "0",
"toReplace": "CONFIG_LV_USE_PERF_MONITOR=.+",
"newContent": "CONFIG_LV_USE_PERF_MONITOR=n",
"filePath": "sdkconfig.defaults"
}
]
}
]
}