Files
picar/.vscode/launch.json
2020-09-12 15:49:01 +09:30

27 lines
845 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": "Car Module",
"type": "python",
"request": "launch",
"module": "car",
"env": {
"CAR_VEHICLE": "VEHICLE_MOCK",
// "CAR_VEHICLE": "VEHICLE_SERIAL",
// "CAR_LIDAR": "/dev/tty.usbserial-0001",
"CAR_LIDAR": "LIDAR_MOCK"
}
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}