{ // 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 Debugger: Current File", "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal" }, { "name": "Python Debugger: Main", "type": "debugpy", "request": "launch", "program": "${workspaceFolder}/main.py", "console": "integratedTerminal" }, { "name": "I2C_Playground", "type": "debugpy", "request": "launch", "module": "playgrounds.i2c_playground", "console": "integratedTerminal" }, { "name": "Camera Playground", "type": "debugpy", "request": "launch", "module": "playgrounds.camera_playground", "console": "integratedTerminal" }, { "name": "Mag Dist Playground", "type": "debugpy", "request": "launch", "module": "playgrounds.mag_dist_playground", "console": "integratedTerminal" }, { "name": "Mag to Feeder Moving Sequence", "type": "debugpy", "request": "launch", "module": "playgrounds.mag_to_feeder_moving_sequence", "console": "integratedTerminal" }, { "name": "Movement_Playground", "type": "debugpy", "request": "launch", "module": "playgrounds.movement_playground", "console": "integratedTerminal" }, { "name": "Interactive_Movement", "type": "debugpy", "request": "launch", "module": "playgrounds.interactive_movement", "console": "integratedTerminal" }, { "name": "Integration_Test", "type": "debugpy", "request": "launch", "module": "playgrounds.integration_test", "console": "integratedTerminal" } ] }