Files
Sim-Tello-KI-fun/.vscode/launch.json
2025-11-15 11:11:19 +01:00

26 lines
831 B
JSON

{
// 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": "Run Tello Simulator",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/tello_sim/run_sim.py",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"PYTHONPATH": "${workspaceFolder}"
}
},
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}