| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- // 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": "Movement_Playground",
- "type": "debugpy",
- "request": "launch",
- "module": "playgrounds.movement_playground",
- "console": "integratedTerminal"
- }
- ]
- }
|