summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2024-03-25 13:10:02 +0200
committerMartial Simon <msimon_fr@hotmail.com>2024-03-25 13:10:02 +0200
commit7913792a6a9c5b651e7caa79fe4f0610272e0f58 (patch)
treee7a233122e690d9eabb1b1ba90db2744e09577f4 /.vscode/launch.json
parent5b759155d891fb8348d0b6a44f794db345127a45 (diff)
feat: mqtt client
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..d933aeb
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,15 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Download and Run",
+ "type": "ev3devBrowser",
+ "request": "launch",
+ "program": "/home/robot/${workspaceRootFolderName}/main.py",
+ "interactiveTerminal": false
+ }
+ ]
+}