From 1a14deb890084271348061eb7b57563768757e36 Mon Sep 17 00:00:00 2001
From: Christoph Schmidt <christoph.,schmidt@tugraz.at>
Date: Wed, 24 Jan 2024 17:04:14 +0100
Subject: [PATCH] Added a launch file for VS Code

---
 .vscode/launch.json | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 .vscode/launch.json

diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..1807d28
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,16 @@
+{
+    // 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": "Python: Flexsensor",
+            "type": "python",
+            "request": "launch",
+            "program": "examples/main.py",
+            "console": "integratedTerminal",
+            "justMyCode": true
+        }
+    ]
+}
\ No newline at end of file
-- 
GitLab