Skip to content

Commit be86f16

Browse files
authored
[VSC-1258] feature/walkthrough (#1298)
* wip: first draft; Added Walk-through functionality * Update UI Walkthrough * Fix lint * Fix button actions * wip: v2 * Fix open Basic Usage Ui * Fix command for opening ui walkthrough * Fix commands on basic usage walkthrough * wip: basic guide usage walkthrough * wip: finished configuration step * wip: finish create project step Restyle markdowns * wip: fix markdown path * wip: basic usage documentation v1 * Finish Walkthrough v2 * Fix translation * Simplify walkthroughs * Add menuconfig gif * Polish Walkthrough v2
1 parent 0dce8ee commit be86f16

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+538
-2
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@
3434
}
3535
],
3636
"typescript.updateImportsOnFileMove.enabled": "always",
37-
"workbench.editor.enablePreview": true
37+
"workbench.editor.enablePreview": true,
38+
"iis.configDir": ""
3839
}
77.7 KB

media/walkthrough/create-project.png

8.92 KB
20.3 KB

media/walkthrough/examples-list.png

8.63 KB

media/walkthrough/express-setup.png

14.7 KB
1.27 MB

media/walkthrough/gifs/debug.gif

816 KB
942 KB

media/walkthrough/gifs/menuconfig.gif

612 KB
623 KB
381 KB
2.58 MB

media/walkthrough/hints-viewer.png

113 KB
641 Bytes

media/walkthrough/icons/build.png

543 Bytes

media/walkthrough/icons/debug.png

652 Bytes
950 Bytes
671 Bytes

media/walkthrough/icons/flash.png

639 Bytes

media/walkthrough/icons/monitor.png

504 Bytes

media/walkthrough/icons/port.png

969 Bytes
2.46 KB

media/walkthrough/icons/sdkconfig.png

751 Bytes

media/walkthrough/idf-version.png

10.6 KB

media/walkthrough/install-btn.png

4.81 KB
117 KB
60.3 KB
14.1 KB

media/walkthrough/size-analysis.png

32 KB

media/walkthrough/status-bar.png

23.5 KB

package.json

+161
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,150 @@
117117
"main": "./dist/extension",
118118
"l10n": "./l10n",
119119
"contributes": {
120+
"walkthroughs": [
121+
{
122+
"id": "espIdf.walkthrough.basic-usage",
123+
"title": "ESP-IDF Basic Usage Guide",
124+
"description": "Learn how to configure the ESP-IDF extension and use its basic features in VS Code",
125+
"steps": [
126+
{
127+
"id": "introduction",
128+
"title": "Introduction to ESP-IDF in VS Code",
129+
"description": "This walkthrough will guide you through configuring the ESP-IDF extension and demonstrate its basic usage in Visual Studio Code.",
130+
"media": {
131+
"markdown": "walkthroughs/basic/basic-usage-intro.md"
132+
}
133+
},
134+
{
135+
"id": "extension-configuration",
136+
"title": "Configuring the ESP-IDF Extension",
137+
"description": "❗**Linux and MacOS users:** Please install prerequisites first. The process is quick and simple - follow the steps in our [ESP-IDF install documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/linux-macos-setup.html#step-1-install-prerequisites).\n\nOnce ready, let's configure the ESP-IDF extension:\n\n[Configure ESP-IDF Extension](command:espIdf.setup.start)\n\n",
138+
"media": {
139+
"markdown": "walkthroughs/basic/configuration.md"
140+
}
141+
},
142+
{
143+
"id": "create-example-project",
144+
"title": "Creating an Example Project",
145+
"description": "Now, let's create a new project from ESP-IDF examples:\n\n[Show Example Projects](command:espIdf.examples.start)\n\n💡 Explore different examples to find one that suits your needs.",
146+
"media": {
147+
"markdown": "walkthroughs/basic/create-project.md"
148+
}
149+
},
150+
{
151+
"id": "setup-project",
152+
"title": "Setting Up Your Project",
153+
"description": "Before building your project, you'll need to configure some essential settings:\n\n1. Configure your target device\n\n[Set Espressif Device Target](command:espIdf.setTarget)\n2. Set up project-specific configurations (not needed in our example)\n3. Select serial port \n\n[Select Port to Use](command:espIdf.selectPort)\n4. Select flashing method \n\n[Select Flash Method](command:espIdf.selectFlashMethodAndFlash)",
154+
"media": {
155+
"markdown": "walkthroughs/basic/setup-project.md"
156+
}
157+
},
158+
{
159+
"id": "build-flash-monitor",
160+
"title": "Building, Flashing, and Monitoring",
161+
"description": "Now that your project is configured, let's build the code, flash it to your device, and monitor the output.\n\nYou can perform these operations individually or all at once using the 'Build, Flash and Monitor' command.\n\n[Build, Flash and Monitor](command:espIdf.buildFlashMonitor)",
162+
"media": {
163+
"markdown": "walkthroughs/basic/build-flash-monitor.md"
164+
}
165+
},
166+
{
167+
"id": "additional-resources-and-ui",
168+
"title": "Additional Resources and UI Exploration",
169+
"description": "As a next step, we recommend that you go through the Advanced Walkthrough as well.\n\n[Start Advanced Features Guide Walkthrough](command:workbench.action.openWalkthrough?%22espressif.esp-idf-extension%23espIdf.walkthrough.advanced%22)",
170+
"media": {
171+
"markdown": "walkthroughs/basic/additional-resources.md"
172+
}
173+
}
174+
]
175+
},
176+
{
177+
"id": "espIdf.walkthrough.advanced",
178+
"title": "ESP-IDF Advanced Features Guide",
179+
"description": "Explore advanced features and tools for ESP-IDF development in VS Code",
180+
"steps": [
181+
{
182+
"id": "advanced-introduction",
183+
"title": "Introduction to Advanced Features",
184+
"description": "Overview of advanced ESP-IDF development capabilities.\n\n**Prerequisites:**\n - Completed the Basic Usage Guide\n - Basic familiarity with ESP-IDF concepts\n - Have a working ESP-IDF setup\n - Have your development board ready\n - JTAG debugging hardware (for debugging features)",
185+
"media": {
186+
"markdown": "walkthroughs/advanced/advanced-intro.md"
187+
}
188+
},
189+
{
190+
"id": "troubleshooting",
191+
"title": "Troubleshooting Guide",
192+
"description": "Learn about common troubleshooting techniques and how to get help when you need it.\n\nKey features:\n- Debug logging configuration\n- Environment diagnostics\n- Log file locations\n- Common issues and solutions\n\n[Run Doctor Command](command:espIdf.doctorCommand)",
193+
"media": {
194+
"markdown": "walkthroughs/advanced/troubleshooting.md"
195+
}
196+
},
197+
{
198+
"id": "sdk-configuration",
199+
"title": "SDK Configuration (menuconfig)",
200+
"description": "Learn how to customize your project's configuration using menuconfig\nKey features:\n- Component configuration\n- Compiler options\n- Flash and partition settings\n- Serial port parameters\n\n💡 Tip: Use search bar to quickly find settings",
201+
"media": {
202+
"markdown": "walkthroughs/advanced/sdk-configuration.md"
203+
}
204+
},
205+
{
206+
"id": "debugging",
207+
"title": "Debugging Your Application",
208+
"description": "Learn how to debug your ESP-IDF applications using VS Code\n\nKey features:\n- Conditional breakpoints\n- Navigating through the code, call stack and threads\n- Halting the target manually\n- Watching and setting program variables\n- Disassembly view\n- Sending GDB Commands\n- Peripheral Viewer",
209+
"media": {
210+
"markdown": "walkthroughs/advanced/debug-project.md"
211+
}
212+
},
213+
{
214+
"id": "component-installation",
215+
"title": "Installing ESP-IDF Components",
216+
"description": "Learn how to enhance your project with ESP Component Registry and Arduino-ESP32 integration.\n\n- Browse and install ESP components\n- Add Arduino-ESP32 as a component\n- Create projects from component examples\n\n[Open ESP Component Registry](command:esp.component-manager.ui.show)",
217+
"media": {
218+
"markdown": "walkthroughs/advanced/component-installation.md"
219+
}
220+
},
221+
{
222+
"id": "app-size-analysis",
223+
"title": "Application Size Analysis",
224+
"description": "ESP-IDF Extension provides powerful tools to analyze your application's memory usage, helping you optimize storage allocation. \n\n[Open Size Analysis](command:espIdf.size)",
225+
"media": {
226+
"markdown": "walkthroughs/advanced/app-size-analysis.md"
227+
}
228+
},
229+
{
230+
"id": "partition-table",
231+
"title": "Partition Table Configuration",
232+
"description": "The Partition Table Editor provides a user-friendly interface to define and modify your ESP32's flash memory layout.\nKey features\n- Visual partition table editing interface\n- Automatic CSV file generation and management\n- Direct integration with ESP-IDF build systemReal-time validation of partition configurations\n\n[Open Partition Editor](command:esp.webview.open.partition-table)",
233+
"media": {
234+
"markdown": "walkthroughs/advanced/partition-table.md"
235+
}
236+
},
237+
{
238+
"id": "unit-testing",
239+
"title": "Unit Testing",
240+
"description": "Set up and run unit tests for your ESP-IDF projects.\n\n- Configure test environment\n- Write and run tests\n- Analyze test results\n\n[Open Testing View](command:testing.viewExplorer)",
241+
"media": {
242+
"markdown": "walkthroughs/advanced/unit-testing.md"
243+
}
244+
},
245+
{
246+
"id": "multi-project",
247+
"title": "Multi-Project Management",
248+
"description": "Learn to efficiently manage multiple ESP-IDF projects in a single workspace.",
249+
"media": {
250+
"markdown": "walkthroughs/advanced/multi-project.md"
251+
}
252+
},
253+
{
254+
"id": "conclusion",
255+
"title": "Next Steps",
256+
"description": "Congratulations! You've learned about essential advanced features of ESP-IDF development.\n\nNext steps:\n- Explore additional tools in ESP-IDF documentation\n- Join the ESP32 community forum\n- Check out example projects\n\n[Visit Our Documentation](https://docs.espressif.com/projects/vscode-esp-idf-extension/en/latest/additionalfeatures.html)",
257+
"media": {
258+
"markdown": "walkthroughs/advanced/advanced-conclusion.md"
259+
}
260+
}
261+
]
262+
}
263+
],
120264
"problemMatchers": [
121265
{
122266
"name": "espIdf",
@@ -232,6 +376,13 @@
232376
}
233377
],
234378
"menus": {
379+
"extension/context": [
380+
{
381+
"command": "espIdf.openWalkthrough",
382+
"when": "extension =~ /^espressif.esp-idf-extension$/ && extensionStatus == installed",
383+
"group": "zzz"
384+
}
385+
],
235386
"editor/title": [
236387
{
237388
"command": "espIdf.searchError",
@@ -611,6 +762,12 @@
611762
"scope": "window",
612763
"description": "%param.showOnboardingOnInit%"
613764
},
765+
"idf.hasWalkthroughBeenShown": {
766+
"type": "boolean",
767+
"default": false,
768+
"scope": "application",
769+
"description": "%param.hasWalkthroughBeenShown%"
770+
},
614771
"trace.poll_period": {
615772
"type": "number",
616773
"default": 1,
@@ -1033,6 +1190,10 @@
10331190
}
10341191
],
10351192
"commands": [
1193+
{
1194+
"command": "espIdf.openWalkthrough",
1195+
"title": "ESP-IDF: Open Get Started Walkthrough"
1196+
},
10361197
{
10371198
"command": "espIdf.searchError",
10381199
"title": "%espIdf.searchError.title%"

package.nls.es.json

+1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
"param.usbSerialPortFilters.title": "Lista de USB productID y de USB vendorID para filtrar",
167167
"param.usbSerialPortFilters.vendorId": "Número hexadecimal del USB vendorID como texto.",
168168
"param.usbSerialPortFilters.productId": "Número hexadecimal del USB productID como texto.",
169+
"param.hasWalkthroughBeenShown": "Indica si se ha mostrado el recorrido de bienvenida",
169170
"trace.poll_period.description": "poll_period se establecerá para el rastreo de la aplicación",
170171
"trace.skip_size.description": "skip_size se establecerá para el rastreo de la aplicación",
171172
"trace.stop_tmo.description": "stop_tmo se establecerá para el rastreo de la aplicación",

package.nls.json

+1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
"param.usbSerialPortFilters.title": "USB serial port productID and vendorID list to filter",
167167
"param.usbSerialPortFilters.vendorId": "USB Vendor ID hex number as string. Format is 0x0403",
168168
"param.usbSerialPortFilters.productId": "USB Product ID hex number as string. Format is 0x6010",
169+
"param.hasWalkthroughBeenShown": "Has the walkthrough been shown",
169170
"trace.poll_period.description": "poll_period will be set for the apptrace",
170171
"trace.skip_size.description": "skip_size will be set for the apptrace",
171172
"trace.stop_tmo.description": "stop_tmo will be set for the apptrace",

package.nls.pt.json

+1
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
"param.usbSerialPortFilters.title": "Lista de productID e vendorID da porta serial USB para filtrar",
165165
"param.usbSerialPortFilters.vendorId": "Número hexadecimal do USB vendorID como string.",
166166
"param.usbSerialPortFilters.productId": "Número hexadecimal de USB productID como string.",
167+
"param.hasWalkthroughBeenShown": "Mostrar o guia de introdução na inicialização da extensão",
167168
"trace.poll_period.description": "poll_period será definido para o apptrace",
168169
"trace.skip_size.description": "skip_size será definido para o apptrace",
169170
"trace.stop_tmo.description": "stop_tmo será definido para o apptrace",

package.nls.ru.json

+1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
"param.usbSerialPortFilters.title": "Список идентификаторов продуктов и идентификаторов поставщиков для последовательного порта USB для фильтрации",
167167
"param.usbSerialPortFilters.vendorId": "Шестнадцатеричный номер USB VendorID в виде строки. ",
168168
"param.usbSerialPortFilters.productId": "Шестнадцатеричный номер USB ProductID в виде строки. ",
169+
"param.hasWalkthroughBeenShown": "Показывать ли руководство по настройке ESP-IDF при первом запуске.",
169170
"trace.poll_period.description": "poll_ period будет установлен для apptrace",
170171
"trace.skip_size.description": "Skip_size будет установлен для трассировки приложения.",
171172
"trace.stop_tmo.description": "stop_tmo будет установлен для apptrace",

package.nls.zh-CN.json

+1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
"param.usbSerialPortFilters.title": "USB串口productID和vendorID列表进行过滤",
167167
"param.usbSerialPortFilters.vendorId": "USB VendorID 十六进制数字作为字符串。",
168168
"param.usbSerialPortFilters.productId": "USB ProductID 十六进制数字作为字符串。",
169+
"param.hasWalkthroughBeenShown": "是否显示了 ESP-IDF 配置窗口的漫游",
169170
"trace.poll_period.description": "将为 apptrace 设置 poll_period",
170171
"trace.skip_size.description": "将为 apptrace 设置 skip_size",
171172
"trace.stop_tmo.description": "将为 apptrace 设置 stop_tmo",

src/checkExtensionSettings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function checkExtensionSettings(
3636
try {
3737
const isExtensionConfigured = await isCurrentInstallValid(workspace);
3838
if (isExtensionConfigured) {
39-
vscode.commands.executeCommand("espIdf.welcome.start");
39+
await vscode.commands.executeCommand("espIdf.welcome.start");
4040
return;
4141
}
4242
} catch (error) {

src/extension.ts

+29
Original file line numberDiff line numberDiff line change
@@ -3636,6 +3636,35 @@ export async function activate(context: vscode.ExtensionContext) {
36363636
statusBarItems["currentIdfVersion"]
36373637
);
36383638

3639+
// WALK-THROUGH
3640+
let disposable = vscode.commands.registerCommand(
3641+
"espIdf.openWalkthrough",
3642+
() => {
3643+
vscode.commands.executeCommand(
3644+
"workbench.action.openWalkthrough",
3645+
"espressif.esp-idf-extension#espIdf.walkthrough.basic-usage"
3646+
);
3647+
}
3648+
);
3649+
3650+
context.subscriptions.push(disposable);
3651+
3652+
const hasWalkthroughBeenShown = await idfConf.readParameter(
3653+
"idf.hasWalkthroughBeenShown"
3654+
);
3655+
3656+
if (!hasWalkthroughBeenShown) {
3657+
await idfConf.writeParameter(
3658+
"idf.hasWalkthroughBeenShown",
3659+
true,
3660+
vscode.ConfigurationTarget.Global
3661+
);
3662+
vscode.commands.executeCommand(
3663+
"workbench.action.openWalkthrough",
3664+
"espressif.esp-idf-extension#espIdf.walkthrough.basic-usage"
3665+
);
3666+
}
3667+
36393668
// Hints Viewer
36403669

36413670
const treeDataProvider = new ErrorHintProvider(context);
+12
+11
+10
+8
+8

0 commit comments

Comments
 (0)