重构WiFi站点示例并集成LVGL用户界面
- 更新了 devcontainer 和 VSCode 设置,以指定串口和闪存类型。 - 增强了 README 文档,添加了 LVGL 演示界面的详细硬件规格和使用说明。 - 在 lvgl_demo_ui.c 中新增了 LVGL 演示界面实现,展示旋转按钮和弧形图形。 - 将主应用逻辑整合到 main.c 文件中,集成 LVGL 和 LCD 触摸功能。 - 移除已弃用的 station_example_main.c,以简化代码库。 - 更新依赖项,包含 LVGL 和 LCD 触摸组件。
This commit is contained in:
@@ -8,10 +8,10 @@
|
||||
"settings": {
|
||||
"terminal.integrated.defaultProfile.linux": "bash",
|
||||
"idf.gitPath": "/usr/bin/git",
|
||||
"idf.espIdfPath": "/opt/esp/idf",
|
||||
"idf.espIdfPath": "/opt/esp/idf",
|
||||
"idf.toolsPath": "/opt/esp/tools",
|
||||
"idf.pythonBinPath": "/opt/esp/idf/venv/bin/python3",
|
||||
"idf.useIDFKConfig": true
|
||||
"idf.useIDFKConfig": true
|
||||
},
|
||||
"extensions": [
|
||||
"espressif.esp-idf-extension",
|
||||
@@ -19,5 +19,8 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"runArgs": ["--privileged"]
|
||||
"runArgs": [
|
||||
"--privileged",
|
||||
"--device=/dev/ttyACM0"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user