diff --git a/test_anim/.vscode/launch.json b/test_anim/.vscode/launch.json
index 7532d9f31fa607006e7fb3e38681dc97a9aea56b..cac8b6aa5659ddb29667c945419cb2ca8ff570d0 100644
--- a/test_anim/.vscode/launch.json
+++ b/test_anim/.vscode/launch.json
@@ -1,27 +1,19 @@
 {
     "version": "0.2.0",
     "configurations": [
-        {
-            "name": "C++ Launch",
-            "type": "cppdbg",
-            "request": "launch",
-            "cwd": "${workspaceFolder}",
-            "program": "${workspaceRoot}/minimatrixrpi",
-            "miDebuggerPath": "c:\\MinGW\\bin\\gdb.exe",
-            "miDebuggerServerAddress": "192.168.2.212:10000",
-            "MIMode": "gdb"
-        },
         {
             "type": "gdb",
-            "request": "attach",
-            "name": "Attach to gdbserver",
-            "executable": "${workspaceRoot}/minimatrixrpi",
-            "target": "192.168.2.212:10000",
-            "remote": true,
-            "printCalls": true,
-            "cwd": "${workspaceRoot}", 
-            "gdbpath": "c:\\MinGW\\bin\\gdb.exe",
-            "valuesFormatting": "parseText"
-        }
+            "request": "launch",
+            "name": "Launch Program (SSH)",
+            "target": "./minimatrixrpi",
+            "cwd": "${workspaceRoot}",
+            "ssh": {
+                "host": "192.168.2.212",
+                "cwd": "/home/pi/Documents/minimatrixrpi/test_anim/",
+                "password": "kiskutya",
+                "user": "pi"
+            }
+            //"preLaunchTask": "fetch program"
+        } 
     ]
 }
\ No newline at end of file