Files
picar/.vscode/launch.json
2020-05-03 15:38:29 +09:30

26 lines
792 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_LIDAR": "LIDAR_RPLIDAR",
"CAR_VEHICLE": "CAR_MOCK",
"LIDAR_DEVICE": "/dev/tty.usbserial-0001"
}
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}